From be6b91398805f2b0989b4a76f71c1c7c5c17ec8b Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Sun, 19 Feb 2017 11:47:19 -0500 Subject: Updates for 3.4.6 from Arfrever --- patches/24_all_expat-2.2.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 patches/24_all_expat-2.2.patch diff --git a/patches/24_all_expat-2.2.patch b/patches/24_all_expat-2.2.patch deleted file mode 100644 index 34d1ecd..0000000 --- a/patches/24_all_expat-2.2.patch +++ /dev/null @@ -1,19 +0,0 @@ -https://bugs.python.org/issue27369 -https://hg.python.org/cpython/rev/17ec4d58c046 - ---- Lib/test/test_pyexpat.py -+++ Lib/test/test_pyexpat.py -@@ -662,11 +662,9 @@ - # \xc2\x85 is UTF-8 encoded U+0085 (NEXT LINE) - xml = b"\r\n" - parser = expat.ParserCreate() -- try: -+ err_pattern = r'XML declaration not well-formed: line 1, column \d+' -+ with self.assertRaisesRegex(expat.ExpatError, err_pattern): - parser.Parse(xml, True) -- self.fail() -- except expat.ExpatError as e: -- self.assertEqual(str(e), 'XML declaration not well-formed: line 1, column 14') - - class ErrorMessageTest(unittest.TestCase): - def test_codes(self): -- cgit v1.2.3-65-gdbad