Home | Trees | Indices | Help |
|
---|
|
StringIO.StringIO --+ | SimpleMultiPartInputStream
Stream that extracts content from another stream until the boundary string is encountered.
Public only for unit tests, should be considered private for all other purposes.
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|
Retrieve the entire contents of the "file" at any time before the StringIO object's close() method is called. The StringIO object can accept either Unicode or 8-bit strings, but mixing the two may take some care. If both are used, 8-bit strings that cannot be interpreted as 7-bit ASCII (that use the 8th bit) will cause a UnicodeError to be raised when getvalue() is called.
|
Reads the input to expect a boundary string. Expects that the first character has already been matched.
|
Returns the partly matched boundary string and the byte following that.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sat Apr 20 16:01:21 2013 | http://epydoc.sourceforge.net |