1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{StringIO} ---
|
1999-04-21 15:15:22 -03:00
|
|
|
Read and write strings as files}
|
1998-07-23 14:59:49 -03:00
|
|
|
|
1999-04-21 15:15:22 -03:00
|
|
|
\declaremodule{standard}{StringIO}
|
1998-07-23 14:59:49 -03:00
|
|
|
\modulesynopsis{Read and write strings as if they were files.}
|
1997-03-03 12:01:21 -04:00
|
|
|
|
|
|
|
|
1998-03-27 01:27:08 -04:00
|
|
|
This module implements a file-like class, \class{StringIO},
|
1998-01-14 10:51:31 -04:00
|
|
|
that reads and writes a string buffer (also known as \emph{memory
|
1999-04-21 15:15:22 -03:00
|
|
|
files}). See the description on file objects for operations (section
|
|
|
|
\ref{bltin-file-objects}).
|
1997-03-03 12:01:21 -04:00
|
|
|
|
1998-03-27 01:27:08 -04:00
|
|
|
\begin{classdesc}{StringIO}{\optional{buffer}}
|
|
|
|
When a \class{StringIO} object is created, it can be initialized
|
1997-03-03 12:01:21 -04:00
|
|
|
to an existing string by passing the string to the constructor.
|
1998-03-27 01:27:08 -04:00
|
|
|
If no string is given, the \class{StringIO} will start empty.
|
|
|
|
\end{classdesc}
|
1997-03-03 12:01:21 -04:00
|
|
|
|
1998-04-11 15:05:24 -03:00
|
|
|
The following methods of \class{StringIO} objects require special
|
|
|
|
mention:
|
|
|
|
|
1998-03-27 01:27:08 -04:00
|
|
|
\begin{methoddesc}{getvalue}{}
|
|
|
|
Retrieve the entire contents of the ``file'' at any time before the
|
|
|
|
\class{StringIO} object's \method{close()} method is called.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{close}{}
|
|
|
|
Free the memory buffer.
|
|
|
|
\end{methoddesc}
|
1998-04-11 17:05:43 -03:00
|
|
|
|
|
|
|
|
1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{cStringIO} ---
|
1999-04-21 15:15:22 -03:00
|
|
|
Faster version of \module{StringIO}}
|
1998-07-23 14:59:49 -03:00
|
|
|
|
1999-02-18 17:13:03 -04:00
|
|
|
\declaremodule{builtin}{cStringIO}
|
1999-04-21 15:15:22 -03:00
|
|
|
\modulesynopsis{Faster version of \module{StringIO}, but not
|
|
|
|
subclassable.}
|
|
|
|
\moduleauthor{Jim Fulton}{jfulton@digicool.com}
|
1999-02-18 17:13:03 -04:00
|
|
|
\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
|
1998-04-11 17:05:43 -03:00
|
|
|
|
|
|
|
The module \module{cStringIO} provides an interface similar to that of
|
1999-04-21 15:15:22 -03:00
|
|
|
the \refmodule{StringIO} module. Heavy use of \class{StringIO.StringIO}
|
1998-04-11 17:05:43 -03:00
|
|
|
objects can be made more efficient by using the function
|
|
|
|
\function{StringIO()} from this module instead.
|
|
|
|
|
|
|
|
Since this module provides a factory function which returns objects of
|
|
|
|
built-in types, there's no way to build your own version using
|
1999-04-21 15:15:22 -03:00
|
|
|
subclassing. Use the original \refmodule{StringIO} module in that case.
|
|
|
|
|
|
|
|
The following data objects are provided as well:
|
|
|
|
|
|
|
|
|
|
|
|
\begin{datadesc}{InputType}
|
|
|
|
The type object of the objects created by calling
|
|
|
|
\function{StringIO} with a string parameter.
|
|
|
|
\end{datadesc}
|
|
|
|
|
|
|
|
\begin{datadesc}{OutputType}
|
|
|
|
The type object of the objects returned by calling
|
|
|
|
\function{StringIO} with no parameters.
|
|
|
|
\end{datadesc}
|
|
|
|
|
|
|
|
|
|
|
|
There is a C API to the module as well; refer to the module source for
|
|
|
|
more information.
|