| __all__ = [ "match", "search", "sub", "subn", "split", "findall", | |
| "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", | |
| "U", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE", | |
| "UNICODE", "error" ] | |
| import sre, sys | |
| module = sys.modules['re'] | |
| for name in __all__: | |
| setattr(module, name, getattr(sre, name)) | |