Commit b6596c51 authored by Benjamin Peterson's avatar Benjamin Peterson

remove extra zero

parent 4ab701b2
...@@ -199,7 +199,7 @@ def template(pattern, flags=0): ...@@ -199,7 +199,7 @@ def template(pattern, flags=0):
return _compile(pattern, flags|T) return _compile(pattern, flags|T)
_alphanum = frozenset( _alphanum = frozenset(
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890") "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
def escape(pattern): def escape(pattern):
"Escape all non-alphanumeric characters in pattern." "Escape all non-alphanumeric characters in pattern."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment