From 3c094a8d31c3a894c1096fc4b7c87c5b0e3ea244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 18 Jul 2004 18:36:18 +0000 Subject: Remove test for #919008. Users may have old PyXML versions installed, in which case the test will fail. For the mainline, the test should stay, and the minimum required PyXML version needs to be raised. --- Lib/test/test_sax.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index 8786094..d80a193 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py @@ -489,41 +489,6 @@ def test_expat_incomplete(): else: return 0 -def test_sax_parse_exception_str(): - # pass various values from a locator to the SAXParseException to - # make sure that the __str__() doesn't fall apart when None is - # passed instead of an integer line and column number - # - # use "normal" values for the locator: - str(SAXParseException("message", None, - DummyLocator(1, 1))) - # use None for the line number: - str(SAXParseException("message", None, - DummyLocator(None, 1))) - # use None for the column number: - str(SAXParseException("message", None, - DummyLocator(1, None))) - # use None for both: - str(SAXParseException("message", None, - DummyLocator(None, None))) - return 1 - -class DummyLocator: - def __init__(self, lineno, colno): - self._lineno = lineno - self._colno = colno - - def getPublicId(self): - return "pubid" - - def getSystemId(self): - return "sysid" - - def getLineNumber(self): - return self._lineno - - def getColumnNumber(self): - return self._colno # =========================================================================== # -- cgit v0.12