summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-10-30 21:40:04 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-10-30 21:40:04 (GMT)
commit5833a2f6fdc6ee58b23a02380093bf1bfb015f3c (patch)
tree18f270cc95fe584bb087cfa59db8027fbd1321cb /Misc
parent9c94ba4e7d679e7ba3cb80739275726656fd859b (diff)
downloadcpython-5833a2f6fdc6ee58b23a02380093bf1bfb015f3c.zip
cpython-5833a2f6fdc6ee58b23a02380093bf1bfb015f3c.tar.gz
cpython-5833a2f6fdc6ee58b23a02380093bf1bfb015f3c.tar.bz2
Issue #4213: The file system encoding is now normalized by the codec subsystem, for example UTF-8 is turned into utf-8.
Patch created by Victor and reviewed by me. The change is required for proper initialization of subinterpreters.
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 20359ff..72a482e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ What's New in Python 3.0 beta 5
Core and Builtins
-----------------
+- Issue #4213: The file system encoding is now normalized by the
+ codec subsystem, for example UTF-8 is turned into utf-8.
+
- Issue #4200: Changed the atexit module to store its state in its
PyModuleDef atexitmodule. This fixes a bug with multiple subinterpeters.