diff options
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 305c26f..1ba4810 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -307,7 +307,7 @@ The :mod:`test.test_support` module defines the following functions: Example use:: with captured_stdout() as s: - print "hello" + print("hello") assert s.getvalue() == "hello" |