cpython/Lib/test/test_doctest/test_doctest_errors.txt
Serhiy Storchaka f6324bc7ee
gh-108885: Imporove tests for doctest (GH-134832)
Test the error and failure report in more detail.
2025-05-28 20:14:56 +03:00

14 lines
190 B
Text

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