diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-24 16:39:53 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-24 16:39:53 (GMT) |
commit | f0c10f084022073c76d12ff66525e1b52d7188b7 (patch) | |
tree | 0c1cb708f858b5316e289601800d91e969a8f556 /Doc/library/test.rst | |
parent | d57c73bbdd72eb95d8cf1e1141c8f12350dbabbd (diff) | |
parent | 3e29d93007f7ac8b96ddf0b4f925f9a9dfa06b30 (diff) | |
download | cpython-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.rst | 2 |
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) |