summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-19 19:47:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-19 19:47:59 (GMT)
commiteda95e9db3e15ebc19979eab948a75272d8cbdcf (patch)
tree9e374c5cf279d600943f57543adccf902b6d5c09 /Misc
parentbc740a6951b2d234fc69936c7ff4713a503f20cf (diff)
downloadcpython-eda95e9db3e15ebc19979eab948a75272d8cbdcf.zip
cpython-eda95e9db3e15ebc19979eab948a75272d8cbdcf.tar.gz
cpython-eda95e9db3e15ebc19979eab948a75272d8cbdcf.tar.bz2
Merged revisions 75537,75539 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r75537 | antoine.pitrou | 2009-10-19 21:37:25 +0200 (lun., 19 oct. 2009) | 3 lines egreen is Derk Drukker + fix NEWS formatting ........ r75539 | antoine.pitrou | 2009-10-19 21:43:09 +0200 (lun., 19 oct. 2009) | 4 lines 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/ACKS1
-rw-r--r--Misc/NEWS7
2 files changed, 6 insertions, 2 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e8005e9..cefbc11 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -184,6 +184,7 @@ Ismail Donmez
Dima Dorfman
Cesar Douady
Dean Draayer
+Derk Drukker
John DuBois
Paul Dubois
Graham Dumpleton
diff --git a/Misc/NEWS b/Misc/NEWS
index 2f00c3e..5d15820 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,7 +13,7 @@ Core and Builtins
-----------------
- Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when
- using byte values greater than 127. Patch by egreen.
+ using byte values greater than 127. Patch by Derk Drukker.
- Issue #7019: Raise ValueError when unmarshalling bad long data, instead
of producing internally inconsistent Python longs.
@@ -30,6 +30,9 @@ Core and Builtins
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.
@@ -45,7 +48,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 #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils.