]> granicus.if.org Git - python/commitdiff
Updated __all__ to include every non-underscored class, function, and
authorEdward Loper <edloper@gradient.cis.upenn.edu>
Thu, 19 Aug 2004 19:19:03 +0000 (19:19 +0000)
committerEdward Loper <edloper@gradient.cis.upenn.edu>
Thu, 19 Aug 2004 19:19:03 +0000 (19:19 +0000)
constant defined by the module (except the test*() functions, which
should be integrated into test/test_doctest.py, anyway).

Lib/doctest.py

index c7a183b67fefa87ea4d00836ea9e48cda884a386..dcd64072e1a65d9b448c885bbfa61c4ef62d786b 100644 (file)
@@ -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: