diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-10-21 11:27:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-10-21 11:27:11 (GMT) |
commit | 6633c39af828b524c6020fd93635abdf3ad2f7f1 (patch) | |
tree | 85ec782515346e4eb13c54f34e9bf66f83e7ff77 /Doc | |
parent | e1bfd3e296872afaab54ae86de45176a6f77bcab (diff) | |
download | cpython-6633c39af828b524c6020fd93635abdf3ad2f7f1.zip cpython-6633c39af828b524c6020fd93635abdf3ad2f7f1.tar.gz cpython-6633c39af828b524c6020fd93635abdf3ad2f7f1.tar.bz2 |
fix typo in what's new in 3.4
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index ac50497..e978fcb 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -271,7 +271,7 @@ intent of code that deliberately suppresses exceptions from a single statement. (Contributed by Raymond Hettinger in :issue:`15806` and Zero Piraeus in :issue:`19266`) -The new :class:`contextlib.redirect_stdio` context manager makes it easier +The new :func:`contextlib.redirect_stdout` context manager makes it easier for utility scripts to handle inflexible APIs that don't provide any options to retrieve their output as a string or direct it to somewhere other than :data:`sys.stdout`. In conjunction with :class:`io.StringIO`, |