diff options
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 92592eb..62d327e 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -481,7 +481,7 @@ def captured_output(stream_name): Example use (with 'stream_name=stdout'):: with captured_stdout() as s: - print "hello" + print("hello") assert s.getvalue() == "hello" """ import io |