summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/test.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index 2e8ba32..940d3e7 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -364,9 +364,9 @@ The :mod:`test.support` module defines the following functions:
.. 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::