summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-19 19:43:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-19 19:43:09 (GMT)
commit6a448d4c2eac16af4c451b43c6dc46cf287b1671 (patch)
tree27935dbb967bd6714bb6a4e1c3cbc862dc902b21 /Misc
parent86906f783162d204b43b976ab81c53b8a57098bd (diff)
downloadcpython-6a448d4c2eac16af4c451b43c6dc46cf287b1671.zip
cpython-6a448d4c2eac16af4c451b43c6dc46cf287b1671.tar.gz
cpython-6a448d4c2eac16af4c451b43c6dc46cf287b1671.tar.bz2
Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-Windows
platforms, and assorted locale fixes by Derk Drukker.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b088fe0..a42a132 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -100,6 +100,9 @@ C-API
Library
-------
+- Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-Windows
+ platforms, and assorted locale fixes by Derk Drukker.
+
- Issue #5833: Fix extra space character in readline completion with the
GNU readline library version 6.0.
@@ -118,7 +121,7 @@ Library
is too large to fit in the current precision.
- Issue #6236, #6348: Fix various failures in the I/O library under AIX
- and other platforms, when using a non-gcc compiler. Patch by egreen.
+ and other platforms, when using a non-gcc compiler. Patch by Derk Drukker.
- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
does now always result in NULL.