Commit 6e8d86b0 authored by Tim Peters's avatar Tim Peters

Change doctest exception example to one whose detail hasn't changed since 1.5.2.

parent 350ced59
...@@ -159,10 +159,10 @@ WHAT ABOUT EXCEPTIONS? ...@@ -159,10 +159,10 @@ WHAT ABOUT EXCEPTIONS?
No problem, as long as the only output generated by the example is the No problem, as long as the only output generated by the example is the
traceback itself. For example: traceback itself. For example:
>>> 1/0 >>> [1, 2, 3].remove(42)
Traceback (most recent call last): Traceback (most recent call last):
File "<stdin>", line 1, in ? File "<stdin>", line 1, in ?
ZeroDivisionError: integer division or modulo by zero ValueError: list.remove(x): x not in list
>>> >>>
Note that only the exception type and value are compared (specifically, Note that only the exception type and value are compared (specifically,
...@@ -244,11 +244,11 @@ If you execute this very file, the examples above will be found and ...@@ -244,11 +244,11 @@ If you execute this very file, the examples above will be found and
executed, leading to this output in verbose mode: executed, leading to this output in verbose mode:
Running doctest.__doc__ Running doctest.__doc__
Trying: 1/0 Trying: [1, 2, 3].remove(42)
Expecting: Expecting:
Traceback (most recent call last): Traceback (most recent call last):
File "<stdin>", line 1, in ? File "<stdin>", line 1, in ?
ZeroDivisionError: integer division or modulo by zero ValueError: list.remove(x): x not in list
ok ok
Trying: x = 12 Trying: x = 12
Expecting: nothing Expecting: nothing
......
test_doctest test_doctest
Running doctest.__doc__ Running doctest.__doc__
Trying: 1/0 Trying: [1, 2, 3].remove(42)
Expecting: Expecting:
Traceback (most recent call last): Traceback (most recent call last):
File "<stdin>", line 1, in ? File "<stdin>", line 1, in ?
ZeroDivisionError: integer division or modulo by zero ValueError: list.remove(x): x not in list
ok ok
Trying: x = 12 Trying: x = 12
Expecting: nothing Expecting: nothing
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment