summaryrefslogtreecommitdiffstats
path: root/Doc/library/test.rst
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-04-24 16:39:53 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-04-24 16:39:53 (GMT)
commitf0c10f084022073c76d12ff66525e1b52d7188b7 (patch)
tree0c1cb708f858b5316e289601800d91e969a8f556 /Doc/library/test.rst
parentd57c73bbdd72eb95d8cf1e1141c8f12350dbabbd (diff)
parent3e29d93007f7ac8b96ddf0b4f925f9a9dfa06b30 (diff)
downloadcpython-f0c10f084022073c76d12ff66525e1b52d7188b7.zip
cpython-f0c10f084022073c76d12ff66525e1b52d7188b7.tar.gz
cpython-f0c10f084022073c76d12ff66525e1b52d7188b7.tar.bz2
Issue #14554: merge with 3.2
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r--Doc/library/test.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index 8b998f6..2e8ba32 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -372,7 +372,7 @@ The :mod:`test.support` module defines the following functions:
with captured_stdout() as s:
print("hello")
- assert s.getvalue() == "hello"
+ assert s.getvalue() == "hello\n"
.. function:: temp_cwd(name='tempcwd', quiet=False, path=None)