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

All Samples(2)  |  Call(0)  |  Derive(0)  |  Import(2)
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/y/pypy3-HEAD/pypy/lib/cStringIO.py   pypy3(Download)
# this one if compiled in.
 
from StringIO import *
from StringIO import __doc__
 
class StringIO(StringIO):
    def reset(self):

src/p/y/pypy-HEAD/lib_pypy/cStringIO.py   pypy(Download)
# this one if compiled in.
 
from StringIO import *
from StringIO import __doc__
 
class StringIO(StringIO):
    def reset(self):