diff options
author | Georg Brandl <georg@python.org> | 2008-05-12 18:06:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-12 18:06:23 (GMT) |
commit | cc80bfeace4c4d8100500d4b12905a34484bef21 (patch) | |
tree | d8f76f6718f59208b05dc42f17a71ae7217465ee /Lib/doctest.py | |
parent | e6bcc9145e3ecae592dd2e24da5508f34022b920 (diff) | |
download | cpython-cc80bfeace4c4d8100500d4b12905a34484bef21.zip cpython-cc80bfeace4c4d8100500d4b12905a34484bef21.tar.gz cpython-cc80bfeace4c4d8100500d4b12905a34484bef21.tar.bz2 |
Fix doctest's __all__.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 49e2fe6..0322612 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -80,13 +80,11 @@ __all__ = [ 'testmod', 'testfile', 'run_docstring_examples', - # 7. Tester - 'Tester', - # 8. Unittest Support + # 7. Unittest Support 'DocTestSuite', 'DocFileSuite', 'set_unittest_reportflags', - # 9. Debugging Support + # 8. Debugging Support 'script_from_examples', 'testsource', 'debug_src', |