mirror of https://github.com/python/cpython
a frozenset is better here
This commit is contained in:
parent
740593416a
commit
c59df7d4e9
|
@ -198,7 +198,8 @@ def template(pattern, flags=0):
|
|||
"Compile a template pattern, returning a pattern object"
|
||||
return _compile(pattern, flags|T)
|
||||
|
||||
_alphanum = set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890')
|
||||
_alphanum = frozenset(
|
||||
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890")
|
||||
|
||||
def escape(pattern):
|
||||
"Escape all non-alphanumeric characters in pattern."
|
||||
|
|
Loading…
Reference in New Issue