home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / xml / __init__.pyo (.txt)
Encoding:
Python Compiled Bytecode  |  2009-02-26  |  612 b   |  29 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'dom',
  6.     'parsers',
  7.     'sax',
  8.     'etree']
  9. __version__ = '$Revision: 41660 $'.split()[-2:][0]
  10. _MINIMUM_XMLPLUS_VERSION = (0, 8, 4)
  11.  
  12. try:
  13.     import _xmlplus
  14. except ImportError:
  15.     pass
  16.  
  17.  
  18. try:
  19.     v = _xmlplus.version_info
  20. except AttributeError:
  21.     pass
  22.  
  23. if v >= _MINIMUM_XMLPLUS_VERSION:
  24.     import sys
  25.     _xmlplus.__path__.extend(__path__)
  26.     sys.modules[__name__] = _xmlplus
  27. else:
  28.     del v
  29.