home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Freeware / Miro 1.0 / Miro_Installer.exe / xulrunner / python / sre.py < prev    next >
Encoding:
Python Source  |  2006-03-23  |  304 b   |  11 lines

  1. """This file is only retained for backwards compatibility.
  2. It will be removed in the future.  sre was moved to re in version 2.5.
  3. """
  4.  
  5. import warnings
  6. warnings.warn("The sre module is deprecated, please import re.",
  7.               DeprecationWarning, 2)
  8.  
  9. from re import *
  10. from re import __all__
  11.