HomeSort by relevance Sort by last modified time
    Searched refs:xmllib (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmllib.py 1 '''Test module to thest the xmllib module.
21 xmllib = test_support.import_module('xmllib', deprecated=True) variable
26 parser = xmllib.XMLParser()
32 class H(xmllib.XMLParser):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xmllib.py 1 '''Test module to thest the xmllib module.
21 xmllib = test_support.import_module('xmllib', deprecated=True) variable
26 parser = xmllib.XMLParser()
32 class H(xmllib.XMLParser):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 30 # 2001-09-10 fl Lazy import of urllib, cgi, xmllib (20x import speedup)
117 SlowParser Slow but safe standard parser (based on xmllib)
564 """Default XML parser (based on xmllib.XMLParser)."""
567 import xmllib # lazy subclassing (!) namespace
568 if xmllib.XMLParser not in SlowParser.__bases__:
569 SlowParser.__bases__ = (xmllib.XMLParser,)
576 xmllib.XMLParser.__init__(self, accept_utf8=1)
578 xmllib.XMLParser.__init__(self) # pre-2.0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 30 # 2001-09-10 fl Lazy import of urllib, cgi, xmllib (20x import speedup)
117 SlowParser Slow but safe standard parser (based on xmllib)
564 """Default XML parser (based on xmllib.XMLParser)."""
567 import xmllib # lazy subclassing (!) namespace
568 if xmllib.XMLParser not in SlowParser.__bases__:
569 SlowParser.__bases__ = (xmllib.XMLParser,)
576 xmllib.XMLParser.__init__(self, accept_utf8=1)
578 xmllib.XMLParser.__init__(self) # pre-2.0
    [all...]

Completed in 253 milliseconds