re.py 186 B

123456
  1. """Minimal "re" compatibility wrapper. See "sre" for documentation."""
  2. engine = "sre" # Some apps might use this undocumented variable
  3. from sre import *
  4. from sre import __all__