commit | fe8e6e741492c496837a48fc04c5c776c8779b32 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Fri Jan 11 08:32:01 2013 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Fri Jan 11 08:32:01 2013 +0200 |
tree | 158902e54b0a6ce62362f03759a674bc117a22e9 | |
parent | 26ed234052db568379efd2cc00d5850dd00b13f7 [diff] [blame] |
#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.
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index 9aea56a..19dd4fc 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py
@@ -235,7 +235,7 @@ if code: return code code = CATEGORIES.get(escape) - if code: + if code and code[0] == IN: return code try: c = escape[1:2]