summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_doctest.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_doctest.txt')
-rw-r--r--Lib/test/test_doctest.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_doctest.txt b/Lib/test/test_doctest.txt
index f8e851e..23446d1 100644
--- a/Lib/test/test_doctest.txt
+++ b/Lib/test/test_doctest.txt
@@ -9,9 +9,9 @@ already:
We can make this fail by disabling the blank-line feature.
>>> if 1:
- ... print 'a'
- ... print
- ... print 'b'
+ ... print('a')
+ ... print()
+ ... print('b')
a
<BLANKLINE>
b