From 722898065c0b1bab196b32f9c1e863195b3aaf9a 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(-) diff --git a/Lib/re.py b/Lib/re.py index ad59640..0850f0d 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 v0.12