commit | 4664563f3401c3d8644ea66c8e4fe71deddcbb80 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 25 14:50:52 2011 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Fri Mar 25 14:50:52 2011 +0200 |
tree | 57d7fc9ebcd0573bd4cddfc5f22823ca22ad4b94 | |
parent | 72de205895d01ae6f461ae795af95094daf06fac [diff] [blame] |
#2650: Refactor re.escape and its tests.
diff --git a/Lib/re.py b/Lib/re.py index 955b6b5..6a01743 100644 --- a/Lib/re.py +++ b/Lib/re.py
@@ -207,8 +207,7 @@ "Escape all non-alphanumeric characters in pattern." s = list(pattern) alphanum = _alphanum - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000"