diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-08 20:34:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-08 20:34:24 (GMT) |
commit | 31dc3735a5538792c907b796119afd94bc22e19c (patch) | |
tree | 84c4399512c07f71508b3dbd885ea29086687ad6 | |
parent | 1a743741bfc1549fb364cec4576e20c8f16f4c99 (diff) | |
parent | 262c5827a5cc0c1902bd4fadad95a3ad8d267e98 (diff) | |
download | cpython-31dc3735a5538792c907b796119afd94bc22e19c.zip cpython-31dc3735a5538792c907b796119afd94bc22e19c.tar.gz cpython-31dc3735a5538792c907b796119afd94bc22e19c.tar.bz2 |
merge 3.1
-rw-r--r-- | Lib/test/support.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index a9e1b77..380d5a8 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -43,8 +43,9 @@ __all__ = [ "run_unittest", "run_doctest", "threading_setup", "threading_cleanup", "reap_children", "cpython_only", "check_impl_detail", "get_attribute", "swap_item", "swap_attr", "requires_IEEE_754", - "TestHandler", "Matcher", "can_symlink", "skip_unless_symlink"] - + "TestHandler", "Matcher", "can_symlink", "skip_unless_symlink", + "import_fresh_module" + ] class Error(Exception): """Base class for regression test exceptions.""" |