From 813f60a476f032bd16a11cfb2cfa422ef313fa3a Mon Sep 17 00:00:00 2001 From: Ethan Furman Date: Sun, 11 Sep 2016 14:54:27 -0700 Subject: issue28082: better name for Flag --- Lib/re.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/re.py') diff --git a/Lib/re.py b/Lib/re.py index ad59640633..0850f0db8d 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -138,7 +138,7 @@ __all__ = [ __version__ = "2.2.1" -class Flag(enum.IntFlag): +class RegexFlag(enum.IntFlag): ASCII = sre_compile.SRE_FLAG_ASCII # assume ascii "locale" IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case LOCALE = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale @@ -157,7 +157,7 @@ class Flag(enum.IntFlag): TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking T = TEMPLATE DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation -globals().update(Flag.__members__) +globals().update(RegexFlag.__members__) # sre exception error = sre_compile.error -- cgit v1.2.1