summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-08-23 14:53:17 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-08-23 14:53:17 (GMT)
commitdbed7a73942c2fb3dbdd2353527bb8c918446cab (patch)
tree53b584582aa9ce5108e9aef6ed046fc97f90885a /Misc
parent879975677adb31c94384004e88b80e1da3528db8 (diff)
downloadcpython-dbed7a73942c2fb3dbdd2353527bb8c918446cab.zip
cpython-dbed7a73942c2fb3dbdd2353527bb8c918446cab.tar.gz
cpython-dbed7a73942c2fb3dbdd2353527bb8c918446cab.tar.bz2
Make test_runpy re-entrant.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a04b2bf..228256e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -832,6 +832,10 @@ Extension Modules
Tests
-----
+- Make test_runpy reentrant by fixing _check_module to clear out any module
+ being tested. Was causing an error by __import__ doing a reload on the
+ second run and thus suppressing bytecode recreation.
+
- Capture socket connection resets and timeouts in test_socket_ssl and
test_urllib2net and raise test.test_support.ResourceDenied.