mirror of
https://github.com/python/cpython.git
synced 2025-01-17 22:14:43 +08:00
f15351d938
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78838 | florent.xicluna | 2010-03-11 15:36:19 +0100 (jeu, 11 mar 2010) | 2 lines Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too. ........ r78839 | florent.xicluna | 2010-03-11 16:55:11 +0100 (jeu, 11 mar 2010) | 2 lines Fix repr of tree Element on windows. ........ r78917 | florent.xicluna | 2010-03-13 12:18:49 +0100 (sam, 13 mar 2010) | 2 lines Move the xml test data to their own directory. ........ r78919 | florent.xicluna | 2010-03-13 13:41:48 +0100 (sam, 13 mar 2010) | 2 lines Do not chdir when running test_xml_etree, and enhance the findfile helper. ........ r78934 | florent.xicluna | 2010-03-13 18:56:19 +0100 (sam, 13 mar 2010) | 2 lines Update some parts of the xml.etree documentation. ........ r78937 | florent.xicluna | 2010-03-13 21:30:15 +0100 (sam, 13 mar 2010) | 3 lines Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions. Update the function, class and method signatures, according to the new convention. ........
40 lines
1008 B
Python
40 lines
1008 B
Python
# xml.etree test for cElementTree
|
|
|
|
from test import support
|
|
|
|
cET = support.import_module('xml.etree.cElementTree')
|
|
|
|
|
|
# cElementTree specific tests
|
|
|
|
def sanity():
|
|
"""
|
|
Import sanity.
|
|
|
|
>>> from xml.etree import cElementTree
|
|
"""
|
|
|
|
|
|
def test_main():
|
|
from test import test_xml_etree, test_xml_etree_c
|
|
|
|
# Run the tests specific to the C implementation
|
|
support.run_doctest(test_xml_etree_c, verbosity=True)
|
|
|
|
# Assign the C implementation before running the doctests
|
|
# Patch the __name__, to prevent confusion with the pure Python test
|
|
pyET = test_xml_etree.ET
|
|
py__name__ = test_xml_etree.__name__
|
|
test_xml_etree.ET = cET
|
|
if __name__ != '__main__':
|
|
test_xml_etree.__name__ = __name__
|
|
try:
|
|
# Run the same test suite as xml.etree.ElementTree
|
|
test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
|
finally:
|
|
test_xml_etree.ET = pyET
|
|
test_xml_etree.__name__ = py__name__
|
|
|
|
if __name__ == '__main__':
|
|
test_main()
|