diff options
Diffstat (limited to 'Lib/sre.py')
-rw-r--r-- | Lib/sre.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/sre.py b/Lib/sre.py index 45333543fb..061d8e8e3e 100644 --- a/Lib/sre.py +++ b/Lib/sre.py @@ -17,6 +17,10 @@ import sre_compile import sre_parse +__all__ = ["match","search","sub","subn","split","findall","compile", + "purge","template","escape","I","L","M","S","X","U","IGNORECASE", + "LOCALE","MULTILINE","DOTALL","VERBOSE","UNICODE","error"] + # flags I = IGNORECASE = sre_compile.SRE_FLAG_IGNORECASE # ignore case L = LOCALE = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale |