diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-11-21 22:27:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-11-21 22:27:24 (GMT) |
commit | c078f929cb20f3e48fc1636ae8c211bc4f91a483 (patch) | |
tree | ccf028e901cb764d739a57cd1c28ba79f2bcd41c /Misc | |
parent | d42941751c52e4e077e3d94bef6f4a3e545444ee (diff) | |
download | cpython-c078f929cb20f3e48fc1636ae8c211bc4f91a483.zip cpython-c078f929cb20f3e48fc1636ae8c211bc4f91a483.tar.gz cpython-c078f929cb20f3e48fc1636ae8c211bc4f91a483.tar.bz2 |
don't segfault when \N escapes are used and unicodedata fails to load
Fixes #4367
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #4367: Python would segfault during compiling when the unicodedata + module couldn't be imported and \N escapes were present. + - Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()`` method on file objects with closefd=False. The file descriptor is still kept open but the file object behaves like a closed file. The ``FileIO`` |