Issue #7295: Do not use a hardcoded file name in test_tarfile.
[python.git] / Lib / test / test_doctest.txt
blobf8e851e1a5f5a57fce008eaf07b85daedee00324
1 This is a sample doctest in a text file.
3 In this example, we'll rely on a global variable being set for us
4 already:
6   >>> favorite_color
7   'blue'
9 We can make this fail by disabling the blank-line feature.
11   >>> if 1:
12   ...    print 'a'
13   ...    print
14   ...    print 'b'
15   a
16   <BLANKLINE>
17   b