summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-03-06 15:27:04 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-03-06 15:27:04 (GMT)
commitdab886ab0fc719dc990f5d06dc99f7ec41807827 (patch)
tree09c9b52438420a97ac82d37147a53f42aacdd06a /Misc
parentc0ddee54b066e937b151a8598be5dba7f45f2405 (diff)
downloadcpython-dab886ab0fc719dc990f5d06dc99f7ec41807827.zip
cpython-dab886ab0fc719dc990f5d06dc99f7ec41807827.tar.gz
cpython-dab886ab0fc719dc990f5d06dc99f7ec41807827.tar.bz2
Merged revisions 78729 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78729 | ezio.melotti | 2010-03-06 17:24:08 +0200 (Sat, 06 Mar 2010) | 1 line #6509: fix re.sub to work properly when the pattern, the string, and the replacement were all bytes. Patch by Antoine Pitrou. ........
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 be7a534..03bd4ec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -100,6 +100,9 @@ Core and Builtins
Library
-------
+- Issue #6509: fix re.sub to work properly when the pattern, the string, and
+ the replacement were all bytes. Patch by Antoine Pitrou.
+
- Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public Review
Issue #29