From 5ee50bba6b96c39ef775664a535c61c27b8e869f Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Mon, 2 Aug 2010 20:47:06 +0000 Subject: [PATCH] Merged revisions 75408 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75408 | antoine.pitrou | 2009-10-14 20:34:31 +0300 (Wed, 14 Oct 2009) | 3 lines Fix a test_atexit failure when run with -3 ........ --- Lib/test/test_atexit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_atexit.py b/Lib/test/test_atexit.py index 0ff6e53bdc5d..bf85b7525361 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): -- 2.47.3