diff options
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 2774ec16e7..71609075b4 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1581,7 +1581,7 @@ class UnexpectedException(Exception): - test: the DocTest object being run - - excample: the Example object that failed + - example: the Example object that failed - exc_info: the exception info """ @@ -1664,7 +1664,7 @@ class DebugRunner(DocTestRunner): >>> runner.run(test) Traceback (most recent call last): ... - UnexpectedException: <DocTest foo from foo.py:0 (2 examples)> + doctest.UnexpectedException: <DocTest foo from foo.py:0 (2 examples)> >>> del test.globs['__builtins__'] >>> test.globs |