home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 #2 / K-CD-2-2004.ISO / OpenOffice Sv / f_0397 / python-core-2.2.2 / lib / xml / parsers / expat.py < prev   
Encoding:
Python Source  |  2003-07-18  |  219 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.