Home | History | Annotate | Download | only in Lib

Lines Matching defs:StringIO

5 f = StringIO()      # ready for writing
6 f = StringIO(buf) # ready for reading
36 __all__ = ["StringIO"]
42 class StringIO:
43 """class StringIO([buffer])
45 When a StringIO object is created, it can be initialized to an existing
47 the StringIO will start empty.
49 The StringIO object can accept either Unicode or 8-bit strings, but
89 """Returns False because StringIO objects are not connected to a
261 the StringIO object's close() method is called.
263 The StringIO object can accept either Unicode or 8-bit strings,
286 f = StringIO()