summaryrefslogtreecommitdiffstats
path: root/Doc/library/contextlib.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:39:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:39:05 (GMT)
commita84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch)
treee8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Doc/library/contextlib.rst
parentd2ad5718ad955a13cf570bacad1d7800d995da33 (diff)
parentd65c9496da3485ac077fa8fd374b061afdd3605e (diff)
downloadcpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.zip
cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz
cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.bz2
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Doc/library/contextlib.rst')
-rw-r--r--Doc/library/contextlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst
index 38f3782..9e8463d 100644
--- a/Doc/library/contextlib.rst
+++ b/Doc/library/contextlib.rst
@@ -142,7 +142,7 @@ Functions and classes provided:
is hardwired to stdout.
For example, the output of :func:`help` normally is sent to *sys.stdout*.
- You can capture that output in a string by redirecting the output to a
+ You can capture that output in a string by redirecting the output to an
:class:`io.StringIO` object::
f = io.StringIO()