diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-05-09 06:12:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-05-09 06:12:19 (GMT) |
commit | 7c038b472675cf6e9ade17cf0ab9f3c8b5250f90 (patch) | |
tree | 8982107ce1ec0e5369a851ea936a8a7618379edd /Lib/test/test_sax.py | |
parent | 75813105a2cb35ce4486038dd9bb7ae07e2a2c72 (diff) | |
parent | 867754e3e3c907f87d1bb0282df628deb392cd62 (diff) | |
download | cpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.zip cpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.tar.gz cpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.tar.bz2 |
merge 11164
Diffstat (limited to 'Lib/test/test_sax.py')
-rw-r--r-- | Lib/test/test_sax.py | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index bddb375..8e00889 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py @@ -794,51 +794,6 @@ class XmlReaderTest(XmlTestBase): self.assertEqual(attrs.getQNameByName((ns_uri, "attr")), "ns:attr") - # During the development of Python 2.5, an attempt to move the "xml" - # package implementation to a new package ("xmlcore") proved painful. - # The goal of this change was to allow applications to be able to - # obtain and rely on behavior in the standard library implementation - # of the XML support without needing to be concerned about the - # availability of the PyXML implementation. - # - # While the existing import hackery in Lib/xml/__init__.py can cause - # PyXML's _xmlpus package to supplant the "xml" package, that only - # works because either implementation uses the "xml" package name for - # imports. - # - # The move resulted in a number of problems related to the fact that - # the import machinery's "package context" is based on the name that's - # being imported rather than the __name__ of the actual package - # containment; it wasn't possible for the "xml" package to be replaced - # by a simple module that indirected imports to the "xmlcore" package. - # - # The following two tests exercised bugs that were introduced in that - # attempt. Keeping these tests around will help detect problems with - # other attempts to provide reliable access to the standard library's - # implementation of the XML support. - - def test_sf_1511497(self): - # Bug report: http://www.python.org/sf/1511497 - import sys - old_modules = sys.modules.copy() - for modname in list(sys.modules.keys()): - if modname.startswith("xml."): - del sys.modules[modname] - try: - import xml.sax.expatreader - module = xml.sax.expatreader - self.assertEqual(module.__name__, "xml.sax.expatreader") - finally: - sys.modules.update(old_modules) - - def test_sf_1513611(self): - # Bug report: http://www.python.org/sf/1513611 - sio = StringIO("invalid") - parser = make_parser() - from xml.sax import SAXParseException - self.assertRaises(SAXParseException, parser.parse, sio) - - def test_main(): run_unittest(MakeParserTest, SaxutilsTest, |