diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-26 16:22:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-26 16:22:27 (GMT) |
commit | eeb2b21ab0ecc3f10a51eea989ba6c2f1f01a9bd (patch) | |
tree | ce00bb2c5cc2917601ac8ea6b686f65956e1ea00 /Lib/test | |
parent | 2b4b5acf185c701ddec09637d9a82d21cd4615c6 (diff) | |
download | cpython-eeb2b21ab0ecc3f10a51eea989ba6c2f1f01a9bd.zip cpython-eeb2b21ab0ecc3f10a51eea989ba6c2f1f01a9bd.tar.gz cpython-eeb2b21ab0ecc3f10a51eea989ba6c2f1f01a9bd.tar.bz2 |
add __all__ to test_support
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test___all__.py | 1 | ||||
-rw-r--r-- | Lib/test/test_support.py | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 1076c61..9bd0083 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -144,6 +144,7 @@ class AllTest(unittest.TestCase): self.check_all("tarfile") self.check_all("telnetlib") self.check_all("tempfile") + self.check_all("test.test_support") self.check_all("textwrap") self.check_all("threading") self.check_all("timeit") diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index a5d8688..620d625 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -13,6 +13,19 @@ import shutil import warnings import unittest +__all__ = ["Error", "TestFailed", "TestSkipped", "ResourceDenied", "import_module", + "verbose", "use_resources", "max_memuse", "record_original_stdout", + "get_original_stdout", "unload", "unlink", "rmtree", "forget", + "is_resource_enabled", "requires", "find_unused_port", "bind_port", + "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ", + "findfile", "verify", "vereq", "sortdict", "check_syntax_error", + "open_urlresource", "WarningMessage", "catch_warning", "CleanImport", + "EnvironmentVarGuard", "TransientResource", "captured_output", + "captured_stdout", "TransientResource", "transient_internet", + "run_with_locale", "set_memlimit", "bigmemtest", "bigaddrspacetest", + "BasicTestRunner", "run_unittest", "run_doctest", "threading_setup", + "threading_cleanup", "reap_children"] + class Error(Exception): """Base class for regression test exceptions.""" |