From: Benjamin Peterson Date: Sun, 8 May 2011 20:32:04 +0000 (-0500) Subject: import_fresh_module ought to be in __all__ X-Git-Tag: v2.7.2rc1~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01c9a160310b9456391a008e1bd8da701f0f0241;p=thirdparty%2FPython%2Fcpython.git import_fresh_module ought to be in __all__ --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index cb2e03b9054b..97bfae837340 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -35,7 +35,8 @@ __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module", "run_with_locale", "set_memlimit", "bigmemtest", "bigaddrspacetest", "BasicTestRunner", "run_unittest", "run_doctest", "threading_setup", "threading_cleanup", "reap_children", "cpython_only", - "check_impl_detail", "get_attribute", "py3k_bytes"] + "check_impl_detail", "get_attribute", "py3k_bytes", + "import_fresh_module"] class Error(Exception):