diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-11-05 01:17:22 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-11-05 01:17:22 (GMT) |
commit | 0ae45116245d4b508672d87eb1249cbf0079f167 (patch) | |
tree | bf7a8bdcb16a2e9f5b4bbdbd63d61e3c213514e5 /Misc/NEWS | |
parent | d83f1e6d6176247efc57cdbf59215743454a3ff5 (diff) | |
download | cpython-0ae45116245d4b508672d87eb1249cbf0079f167.zip cpython-0ae45116245d4b508672d87eb1249cbf0079f167.tar.gz cpython-0ae45116245d4b508672d87eb1249cbf0079f167.tar.bz2 |
importlib.test.source.util referenced variables in the 'finally' part of a
try/finally which may not have been set.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -354,6 +354,10 @@ Documentation Tests ----- +- Issue #7248: In importlib.test.source.util a try/finally block did not make + sure that some referenced objects actually were created in the block before + calling methods on the object. + - Issue #7222: Make thread "reaping" more reliable so that reference leak-chasing test runs give sensible results. The previous method of reaping threads could return successfully while some Thread objects were |