summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2008-09-10 17:44:35 (GMT)
committerGuido van Rossum <guido@python.org>2008-09-10 17:44:35 (GMT)
commit698280df7c321b9986ee000054bb9dbbb32625af (patch)
tree258427b62da42e27228b837314ace46cde063aa1 /Misc
parent92f8f3e013ccb5bb94b1c6133b9b226590587dba (diff)
downloadcpython-698280df7c321b9986ee000054bb9dbbb32625af.zip
cpython-698280df7c321b9986ee000054bb9dbbb32625af.tar.gz
cpython-698280df7c321b9986ee000054bb9dbbb32625af.tar.bz2
Issue #3756: make re.escape() handle bytes as well as str.
Patch by Andrew McNamara, reviewed and tweaked by myself.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d22d038..21d269b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,8 @@ C API
Library
-------
+- Issue #3756: make re.escape() handle bytes as well as str.
+
- Issue #3800: fix filter() related bug in formatter.py.
- Issue #874900: fix behaviour of threading module after a fork.