home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 July / maximum-cd-2011-07.iso / DiscContents / xbmc-10.1.exe / system / python / Lib / re.py < prev    next >
Encoding:
Python Source  |  2011-03-08  |  186 b   |  7 lines

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