From: Edward Loper Date: Thu, 19 Aug 2004 19:19:03 +0000 (+0000) Subject: Updated __all__ to include every non-underscored class, function, and X-Git-Tag: v2.4a3~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7503ff631648db6b54641db3154f4a70193c997;p=python Updated __all__ to include every non-underscored class, function, and constant defined by the module (except the test*() functions, which should be integrated into test/test_doctest.py, anyway). --- diff --git a/Lib/doctest.py b/Lib/doctest.py index c7a183b67f..dcd64072e1 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -170,19 +170,47 @@ executed. __docformat__ = 'reStructuredText en' __all__ = [ + # 0, Option Flags + 'register_optionflag', + 'DONT_ACCEPT_TRUE_FOR_1', + 'DONT_ACCEPT_BLANKLINE', + 'NORMALIZE_WHITESPACE', + 'ELLIPSIS', + 'UNIFIED_DIFF', + 'CONTEXT_DIFF', + # 1. Utility Functions 'is_private', + # 2. Example & DocTest 'Example', 'DocTest', + # 3. Doctest Parser + 'DocTestParser', + # 4. Doctest Finder 'DocTestFinder', + # 5. Doctest Runner 'DocTestRunner', + 'OutputChecker', + 'DocTestFailure', + 'UnexpectedException', + 'DebugRunner', + # 6. Test Functions 'testmod', 'run_docstring_examples', + # 7. Tester 'Tester', + # 8. Unittest Support 'DocTestCase', + 'nooutput', 'DocTestSuite', + 'DocFileCase', + 'DocFileTest', + 'DocFileSuite', + # 9. Debugging Support + 'script_from_examples', 'testsource', + 'debug_src', + 'debug_script', 'debug', -# 'master', ] import __future__ @@ -526,7 +554,7 @@ class DocTest: (other.name, other.filename, other.lineno, id(other))) ###################################################################### -## 2. DocTestParser +## 3. DocTestParser ###################################################################### class DocTestParser: