summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-19 20:40:50 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-19 20:40:50 (GMT)
commit7d79b8b7714b5e7d8a0582a07b5625c280c879c0 (patch)
treebeb8d4f6b49623a468815c33febd040fa5301b11 /Misc
parent5b08b4d230d95fe6a0b24dc45463e785a27fecd2 (diff)
downloadcpython-7d79b8b7714b5e7d8a0582a07b5625c280c879c0.zip
cpython-7d79b8b7714b5e7d8a0582a07b5625c280c879c0.tar.gz
cpython-7d79b8b7714b5e7d8a0582a07b5625c280c879c0.tar.bz2
Issue #8766: Initialize _warnings module before importing the first module.
Fix a crash if an empty directory called "encodings" exists in sys.path.
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 3e582cd..e68e5da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #8766: Initialize _warnings module before importing the first module.
+ Fix a crash if an empty directory called "encodings" exists in sys.path.
+
- Issue #8589: Decode PYTHONWARNINGS environment variable with the file system
encoding and surrogateespace error handler instead of the locale encoding to
be consistent with os.environ. Add PySys_AddWarnOptionUnicode() function.