diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 06:32:01 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 06:32:01 (GMT) |
commit | fe8e6e741492c496837a48fc04c5c776c8779b32 (patch) | |
tree | 158902e54b0a6ce62362f03759a674bc117a22e9 /Misc | |
parent | 26ed234052db568379efd2cc00d5850dd00b13f7 (diff) | |
download | cpython-fe8e6e741492c496837a48fc04c5c776c8779b32.zip cpython-fe8e6e741492c496837a48fc04c5c776c8779b32.tar.gz cpython-fe8e6e741492c496837a48fc04c5c776c8779b32.tar.bz2 |
#13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -65,6 +65,7 @@ Chris Barker Anton Barkovsky Nick Barnes Quentin Barnes +Matthew Barnett Richard Barran Cesar Eduardo Barros Des Barry @@ -199,6 +199,9 @@ Core and Builtins Library ------- +- Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals + when used inside character classes (e.g. '[\A]'). Patch by Matthew Barnett. + - Issue #15545: Fix regression in sqlite3's iterdump method where it was failing if the connection used a row factory (such as sqlite3.Row) that produced unsortable objects. (Regression was introduced by fix for 9750). |