• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(1105)  |  Call(1)  |  Derive(2)  |  Import(1102)
str(object) -> string

Return a nice string representation of the object.
If the argument is a string, the return value is the same object.

src/p/r/productiontrack-HEAD/pt1/tools/reportlab/tools/pythonpoint/demos/examples.py   productiontrack(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/p/r/productiontrack-HEAD/tools/reportlab/tools/pythonpoint/demos/examples.py   productiontrack(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/p/r/productiontrack-HEAD/pt1/tools/reportlab/tools/docco/examples.py   productiontrack(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/p/r/productiontrack-HEAD/tools/reportlab/tools/docco/examples.py   productiontrack(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/m/w/mwlib.ext-0.12.3/upstream-src/tools/pythonpoint/demos/examples.py   mwlib.ext(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/r/e/reportlab-2.5/tools/pythonpoint/demos/examples.py   reportlab(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/m/w/mwlib.ext-0.12.3/upstream-src/tools/docco/examples.py   mwlib.ext(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/r/e/reportlab-2.5/tools/docco/examples.py   reportlab(Download)
# D = dir()
g = globals()
Dprime = {}
from types import StringType
from string import strip
for (a,b) in g.items():
    if a[:4]=="test" and type(b) is StringType:

src/z/o/zope.app.twisted-3.5.0/src/twisted/spread/jelly.py   zope.app.twisted(Download)
import string
import pickle
import types
from types import StringType
try:
    from types import UnicodeType
except ImportError:

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/IronPython/27/Doc/docutils/nodes.py   ironruby(Download)
import os
import re
import warnings
from types import IntType, SliceType, StringType, UnicodeType, \
     TupleType, ListType, ClassType, TypeType
from UserString import UserString
 

  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9  Next