import_fresh_module ought to be in __all__

This commit is contained in:
Benjamin Peterson 2011-05-08 15:32:04 -05:00
parent 1bd816e58e
commit 01c9a16031
1 changed files with 2 additions and 1 deletions

View 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):