From: Georg Brandl Date: Mon, 12 May 2008 18:06:23 +0000 (+0000) Subject: Fix doctest's __all__. X-Git-Tag: v3.0b1~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc80bfeace4c4d8100500d4b12905a34484bef21;p=python Fix doctest's __all__. --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 49e2fe6f02..0322612e60 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',