commit | 65c153547ba6a41d11d3d04f84bacb5645a54e5e | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jul 04 03:05:37 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jul 04 03:05:37 2011 +0200 |
tree | 5feee1947fdb96d6176861f201e03bd5c4036a45 | |
parent | 13502b19c64b2cd37b0b2b66dfcc26d0f028cd84 [diff] [blame] |
Issue #12467: warnings: fix a race condition if a warning is emitted at shutdown, if globals()['__file__'] is None.
diff --git a/Misc/NEWS b/Misc/NEWS index 16651ed..bbd1251 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Library ------- +- Issue #12467: warnings: fix a race condition if a warning is emitted at + shutdown, if globals()['__file__'] is None. + - Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by the garbage collector while the Heap lock is held.