From b6596c516bcb4de4abf5722159d9aa3bff680173 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 21 Feb 2012 08:08:29 -0500 Subject: [PATCH] remove extra zero --- Lib/re.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/re.py b/Lib/re.py index 3934f499c8..aab5d37e58 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -199,7 +199,7 @@ def template(pattern, flags=0): return _compile(pattern, flags|T) _alphanum = frozenset( - "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890") + "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789") def escape(pattern): "Escape all non-alphanumeric characters in pattern." -- 2.40.0