summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-04 00:43:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-04 00:43:09 (GMT)
commit8b0508ed4e1ab32422cf2494c7cd345634912b98 (patch)
tree6f6d7b92c301b994e3b19f76885b82f257af175c /Misc
parentaa90e7c573ee2edd41a21d2a9f34e6f3d728f5e5 (diff)
downloadcpython-8b0508ed4e1ab32422cf2494c7cd345634912b98.zip
cpython-8b0508ed4e1ab32422cf2494c7cd345634912b98.tar.gz
cpython-8b0508ed4e1ab32422cf2494c7cd345634912b98.tar.bz2
Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['__file__'] is None.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5d4ed6f..401a8ea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #12467: warnings: fix a race condition if a warning is emitted at
+ shutdown, if globals()['__file__'] is None.
+
- Issue #12451: pydoc: importfile() now opens the Python script in binary mode,
instead of text mode using the locale encoding, to avoid encoding issues.