summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-03-06 15:24:08 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-03-06 15:24:08 +0000
commitb92ed7cf3673cd9902b785febb895b4e0c7a55ff (patch)
tree7e0b6a4e0e746f6b102bf41859642107c413761a /Misc
parent64fb18e1921d18c8801e85bf8fc429a4be2160e9 (diff)
downloadcpython-git-b92ed7cf3673cd9902b785febb895b4e0c7a55ff.tar.gz
#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 0aaf558ddc..12a8f38e77 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -268,6 +268,9 @@ C-API
Library
-------
+- Issue #6509: fix re.sub to work properly when the pattern, the string, and
+ the replacement were all bytes. Patch by Antoine Pitrou.
+
- The sqlite3 module was updated to pysqlite 2.6.0. This fixes several obscure
bugs and allows loading SQLite extensions from shared libraries.