commit | 698280df7c321b9986ee000054bb9dbbb32625af | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Sep 10 17:44:35 2008 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Sep 10 17:44:35 2008 +0000 |
tree | 258427b62da42e27228b837314ace46cde063aa1 | |
parent | 92f8f3e013ccb5bb94b1c6133b9b226590587dba [diff] [blame] |
Issue #3756: make re.escape() handle bytes as well as str. Patch by Andrew McNamara, reviewed and tweaked by myself.
diff --git a/Misc/NEWS b/Misc/NEWS index d22d038..21d269b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -96,6 +96,8 @@ 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.