org.python.modules
Class cStringIO
java.lang.Object
org.python.modules.cStringIO
public class cStringIO
- extends Object
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.
- Version:
- cStringIO.java,v 1.10 1999/05/20 18:03:20 fb Exp
- Author:
- Finn Bock, [email protected]
InputType
public static PyType InputType
OutputType
public static PyType OutputType
cStringIO
public cStringIO()
StringIO
public static cStringIO.StringIO StringIO()
StringIO
public static cStringIO.StringIO StringIO(String buffer)
- Create a StringIO object, initialized by the value.
- Parameters:
buffer
- The initial value.
- Returns:
- a new StringIO object.
Jython homepage