]> granicus.if.org Git - python/commitdiff
import_fresh_module ought to be in __all__
authorBenjamin Peterson <benjamin@python.org>
Sun, 8 May 2011 20:32:04 +0000 (15:32 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sun, 8 May 2011 20:32:04 +0000 (15:32 -0500)
Lib/test/test_support.py

index cb2e03b9054bcf0909748d4b748d843510b91847..97bfae8373402e753fc292648fcefe4aad5b2fa7 100644 (file)
@@ -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):