summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/_pydevd_re.py
blob: cd0067200b5fd3af76043726245b236701e40fbd (plain)
1
2
3
4
5
6
7
8
9
10
11

__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))