diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:34:31 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-14 17:34:31 (GMT) |
commit | 868817eaf5a7ed4b92c486eb9dadd568b13e629c (patch) | |
tree | f92e6f4ed85d3a8ff0b4e5f857e38ac3a5716b97 | |
parent | bca7b4894a1e338b53bc65b01a09484e5f2da318 (diff) | |
download | cpython-868817eaf5a7ed4b92c486eb9dadd568b13e629c.zip cpython-868817eaf5a7ed4b92c486eb9dadd568b13e629c.tar.gz cpython-868817eaf5a7ed4b92c486eb9dadd568b13e629c.tar.bz2 |
Fix a test_atexit failure when run with -3
-rw-r--r-- | Lib/test/test_atexit.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_atexit.py b/Lib/test/test_atexit.py index 0ff6e53..bf85b75 100644 --- a/Lib/test/test_atexit.py +++ b/Lib/test/test_atexit.py @@ -2,6 +2,7 @@ import sys import unittest import StringIO import atexit +from imp import reload from test import test_support class TestCase(unittest.TestCase): |