| java.lang.Object org.python.modules.cStringIO
cStringIO | public class cStringIO (Code) | | This module implements a file-like class, StringIO, that reads and
writes a string buffer (also known as memory files).
See the description on file objects for operations.
author: Finn Bock, bckfnn@pipmail.dknet.dk version: cStringIO.java,v 1.10 1999/05/20 18:03:20 fb Exp |
Inner Class :public static class StringIO extends PyObject | |
Method Summary | |
public static StringIO | StringIO() | public static StringIO | StringIO(String buf) Create a StringIO object, initialized by the value.
Parameters: buf - The initial value. | static String | getString(char ch) |
StringIO | public static StringIO StringIO()(Code) | | Create an empty StringIO object
a new StringIO object. |
StringIO | public static StringIO StringIO(String buf)(Code) | | Create a StringIO object, initialized by the value.
Parameters: buf - The initial value. a new StringIO object. |
|
|