mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
14 lines
190 B
Text
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
|