home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 June / PCpro_2006_06.ISO / files / freeware / openvip.exe / {app} / Lib / xml / parsers / expat.py < prev   
Encoding:
Python Source  |  2002-08-18  |  232 b   |  14 lines

  1. """Interface to the Expat non-validating XML parser."""
  2. __version__ = '$Revision: 1.1.26.1 $'
  3.  
  4. import sys
  5.  
  6. try:
  7.     from pyexpat import *
  8. except ImportError:
  9.     del sys.modules[__name__]
  10.     del sys
  11.     raise
  12.  
  13. del sys
  14.