[Python-checkins] cpython (3.3): StringIO.StringIO -> io.StringIO (closes #17168)

benjamin.peterson python-checkins at python.org
Sat Feb 9 14:58:01 CET 2013


http://hg.python.org/cpython/rev/474296d6d4a1
changeset:   82090:474296d6d4a1
branch:      3.3
parent:      82087:f36d8ba4eeef
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat Feb 09 08:57:28 2013 -0500
summary:
  StringIO.StringIO -> io.StringIO (closes #17168)

files:
  Doc/library/test.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/test.rst b/Doc/library/test.rst
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -364,9 +364,9 @@
 
 .. function:: captured_stdout()
 
-   A context manager that runs the :keyword:`with` statement body using
-   a :class:`StringIO.StringIO` object as sys.stdout.  That object can be
-   retrieved using the ``as`` clause of the :keyword:`with` statement.
+   A context manager that runs the :keyword:`with` statement body using a
+   :class:`io.StringIO` object as sys.stdout.  That object can be retrieved
+   using the ``as`` clause of the :keyword:`with` statement.
 
    Example use::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list