diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-08 20:32:46 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-08 20:32:46 (GMT) |
commit | 262c5827a5cc0c1902bd4fadad95a3ad8d267e98 (patch) | |
tree | e37d39280754aaa2748e673f9a344e9cf24cde4b /Lib | |
parent | 1c3fd58281a756ab62f927775beda5bc37a4e0e3 (diff) | |
download | cpython-262c5827a5cc0c1902bd4fadad95a3ad8d267e98.zip cpython-262c5827a5cc0c1902bd4fadad95a3ad8d267e98.tar.gz cpython-262c5827a5cc0c1902bd4fadad95a3ad8d267e98.tar.bz2 |
put import_fresh_module in __all__
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/support.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index bef7161..9675df5 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -32,6 +32,7 @@ __all__ = [ "set_memlimit", "bigmemtest", "bigaddrspacetest", "BasicTestRunner", "run_unittest", "run_doctest", "threading_setup", "threading_cleanup", "reap_children", "cpython_only", "check_impl_detail", "get_attribute", + "import_fresh_module" ] class Error(Exception): |