mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 05:42:29 +00:00
python-3.6.zip added from Github
README.cosmo contains the necessary links.
This commit is contained in:
parent
75fc601ff5
commit
0c4c56ff39
4219 changed files with 1968626 additions and 0 deletions
21
third_party/python/Lib/test/xmltests.py
vendored
Normal file
21
third_party/python/Lib/test/xmltests.py
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Convenience test module to run all of the XML-related tests in the
|
||||
# standard library.
|
||||
|
||||
import sys
|
||||
import test.support
|
||||
|
||||
test.support.verbose = 0
|
||||
|
||||
def runtest(name):
|
||||
__import__(name)
|
||||
module = sys.modules[name]
|
||||
if hasattr(module, "test_main"):
|
||||
module.test_main()
|
||||
|
||||
runtest("test.test_minidom")
|
||||
runtest("test.test_pyexpat")
|
||||
runtest("test.test_sax")
|
||||
runtest("test.test_xml_dom_minicompat")
|
||||
runtest("test.test_xml_etree")
|
||||
runtest("test.test_xml_etree_c")
|
||||
runtest("test.test_xmlrpc")
|
Loading…
Add table
Add a link
Reference in a new issue