diff options
author | Christian Heimes <christian@cheimes.de> | 2008-10-30 21:40:04 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-10-30 21:40:04 (GMT) |
commit | 5833a2f6fdc6ee58b23a02380093bf1bfb015f3c (patch) | |
tree | 18f270cc95fe584bb087cfa59db8027fbd1321cb /Misc | |
parent | 9c94ba4e7d679e7ba3cb80739275726656fd859b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |