cpython/Lib/test/test_doctest/test_doctest_errors.txt

15 lines
190 B
Text
Raw Normal View History

This is a sample doctest in a text file, in which all examples fail
or raise an exception.
>>> 2 + 2
5
>>> 1/0
1
>>> def f():
... 2 + '2'
...
>>> f()
1
>>> 2+*3
5