Commit 4f3d35ca authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #18743: Fix references to non-existant "StringIO" module.

parents 210abbf9 eadbe2ab
...@@ -192,7 +192,7 @@ type objects) *must* have the :attr:`ob_size` field. ...@@ -192,7 +192,7 @@ type objects) *must* have the :attr:`ob_size` field.
An optional pointer to the instance print function. An optional pointer to the instance print function.
The print function is only called when the instance is printed to a *real* file; The print function is only called when the instance is printed to a *real* file;
when it is printed to a pseudo-file (like a :class:`StringIO` instance), the when it is printed to a pseudo-file (like a :class:`io.StringIO` instance), the
instance's :c:member:`~PyTypeObject.tp_repr` or :c:member:`~PyTypeObject.tp_str` function is called to convert it to instance's :c:member:`~PyTypeObject.tp_repr` or :c:member:`~PyTypeObject.tp_str` function is called to convert it to
a string. These are also called when the type's :c:member:`~PyTypeObject.tp_print` field is a string. These are also called when the type's :c:member:`~PyTypeObject.tp_print` field is
*NULL*. A type should never implement :c:member:`~PyTypeObject.tp_print` in a way that produces *NULL*. A type should never implement :c:member:`~PyTypeObject.tp_print` in a way that produces
......
...@@ -62,7 +62,7 @@ The module defines the following items: ...@@ -62,7 +62,7 @@ The module defines the following items:
value. value.
The new class instance is based on *fileobj*, which can be a regular file, a The new class instance is based on *fileobj*, which can be a regular file, a
:class:`StringIO` object, or any other object which simulates a file. It :class:`io.BytesIO` object, or any other object which simulates a file. It
defaults to ``None``, in which case *filename* is opened to provide a file defaults to ``None``, in which case *filename* is opened to provide a file
object. object.
......
...@@ -674,8 +674,8 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF. ...@@ -674,8 +674,8 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
In Babyl mailboxes, the headers of a message are not stored contiguously In Babyl mailboxes, the headers of a message are not stored contiguously
with the body of the message. To generate a file-like representation, the with the body of the message. To generate a file-like representation, the
headers and body are copied together into a :class:`StringIO` instance headers and body are copied together into a :class:`io.BytesIO` instance,
(from the :mod:`StringIO` module), which has an API identical to that of a which has an API identical to that of a
file. As a result, the file-like object is truly independent of the file. As a result, the file-like object is truly independent of the
underlying mailbox but does not save memory compared to a string underlying mailbox but does not save memory compared to a string
representation. representation.
......
...@@ -82,7 +82,7 @@ The module defines the following user-callable items: ...@@ -82,7 +82,7 @@ The module defines the following user-callable items:
causes the file to roll over to an on-disk file regardless of its size. causes the file to roll over to an on-disk file regardless of its size.
The returned object is a file-like object whose :attr:`_file` attribute The returned object is a file-like object whose :attr:`_file` attribute
is either a :class:`BytesIO` or :class:`StringIO` object (depending on is either a :class:`io.BytesIO` or :class:`io.StringIO` object (depending on
whether binary or text *mode* was specified) or a true file whether binary or text *mode* was specified) or a true file
object, depending on whether :func:`rollover` has been called. This object, depending on whether :func:`rollover` has been called. This
file-like object can be used in a :keyword:`with` statement, just like file-like object can be used in a :keyword:`with` statement, just like
......
...@@ -1104,9 +1104,9 @@ you wanted a :class:`NonCallableMock` to be used: ...@@ -1104,9 +1104,9 @@ you wanted a :class:`NonCallableMock` to be used:
... ...
TypeError: 'NonCallableMock' object is not callable TypeError: 'NonCallableMock' object is not callable
Another use case might be to replace an object with a `StringIO` instance: Another use case might be to replace an object with a `io.StringIO` instance:
>>> from StringIO import StringIO >>> from io import StringIO
>>> def foo(): >>> def foo():
... print 'Something' ... print 'Something'
... ...
......
...@@ -55,7 +55,7 @@ instead: ...@@ -55,7 +55,7 @@ instead:
.. function:: parseString(string, parser=None) .. function:: parseString(string, parser=None)
Return a :class:`Document` that represents the *string*. This method creates a Return a :class:`Document` that represents the *string*. This method creates a
:class:`StringIO` object for the string and passes that on to :func:`parse`. :class:`io.StringIO` object for the string and passes that on to :func:`parse`.
Both functions return a :class:`Document` object representing the content of the Both functions return a :class:`Document` object representing the content of the
document. document.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment