summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xml_etree_c.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2006-07-29 16:56:15 (GMT)
committerFred Drake <fdrake@acm.org>2006-07-29 16:56:15 (GMT)
commitfbdeaad06910a50d6f05da177949b9a451a1132a (patch)
tree373bae36b9be6328bc02c6f2a778e76a2f58e7ea /Lib/test/test_xml_etree_c.py
parentc032ee939bae3662017f6ff359fb1ed7d207f3f6 (diff)
downloadcpython-fbdeaad06910a50d6f05da177949b9a451a1132a.zip
cpython-fbdeaad06910a50d6f05da177949b9a451a1132a.tar.gz
cpython-fbdeaad06910a50d6f05da177949b9a451a1132a.tar.bz2
expunge the xmlcore changes:
41667, 41668 - initial switch to xmlcore 47044 - mention of xmlcore in What's New 50687 - mention of xmlcore in the library reference re-apply xmlcore changes to xml: 41674 - line ending changes (re-applied manually), directory props 41677 - add cElementTree wrapper 41678 - PSF licensing for etree 41812 - whitespace normalization 42724 - fix svn:eol-style settings 43681, 43682 - remove Python version-compatibility cruft from minidom 46773 - fix encoding of \r\n\t in attr values in saxutils 47269 - added XMLParser alias for cElementTree compatibility additional tests were added in Lib/test/test_sax.py that failed with the xmlcore changes; these relate to SF bugs #1511497, #1513611
Diffstat (limited to 'Lib/test/test_xml_etree_c.py')
-rw-r--r--Lib/test/test_xml_etree_c.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_xml_etree_c.py b/Lib/test/test_xml_etree_c.py
index 587ea99..56e7fed 100644
--- a/Lib/test/test_xml_etree_c.py
+++ b/Lib/test/test_xml_etree_c.py
@@ -1,10 +1,10 @@
-# xmlcore.etree test for cElementTree
+# xml.etree test for cElementTree
import doctest, sys
from test import test_support
-from xmlcore.etree import cElementTree as ET
+from xml.etree import cElementTree as ET
SAMPLE_XML = """
<body>
@@ -30,7 +30,7 @@ def sanity():
"""
Import sanity.
- >>> from xmlcore.etree import cElementTree
+ >>> from xml.etree import cElementTree
"""
def check_method(method):