diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-09-26 01:24:23 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-09-26 01:24:23 (GMT) |
commit | 261b28aac65313463b315e4570798bfea100848f (patch) | |
tree | 0b1922e1ef27f5fb44294868e61e3d07a2f9eb85 /Lib/doctest.py | |
parent | c90ea82302cb90b8c796a01c4988346c651fb5d4 (diff) | |
download | cpython-261b28aac65313463b315e4570798bfea100848f.zip cpython-261b28aac65313463b315e4570798bfea100848f.tar.gz cpython-261b28aac65313463b315e4570798bfea100848f.tar.bz2 |
Removed two undocumented unittest support classes, and one undocumented
unittest support function, from the public interface. If they're not
documented, they shouldn't be public.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index f02fba2..d4119c7 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -83,10 +83,7 @@ __all__ = [ # 7. Tester 'Tester', # 8. Unittest Support - 'DocTestCase', 'DocTestSuite', - 'DocFileCase', - 'DocFileTest', 'DocFileSuite', # 9. Debugging Support 'script_from_examples', |