issue28082: better name for Flag

This commit is contained in:
Ethan Furman 2016-09-11 14:54:27 -07:00
parent b72810583e
commit 722898065c
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ __all__ = [
__version__ = "2.2.1" __version__ = "2.2.1"
class Flag(enum.IntFlag): class RegexFlag(enum.IntFlag):
ASCII = sre_compile.SRE_FLAG_ASCII # assume ascii "locale" ASCII = sre_compile.SRE_FLAG_ASCII # assume ascii "locale"
IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case
LOCALE = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale 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 TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking
T = TEMPLATE T = TEMPLATE
DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilation
globals().update(Flag.__members__) globals().update(RegexFlag.__members__)
# sre exception # sre exception
error = sre_compile.error error = sre_compile.error