summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2017-02-19 11:47:19 -0500
committerMike Gilbert <floppym@gentoo.org>2017-02-19 11:47:19 -0500
commitbe6b91398805f2b0989b4a76f71c1c7c5c17ec8b (patch)
tree68580024482be6396bf00d1177f13c9d08024ea9
parentUpdates from Arfrever (diff)
downloadpython-gentoo-patches-3.4.tar.gz
python-gentoo-patches-3.4.tar.bz2
python-gentoo-patches-3.4.zip
Updates for 3.4.6 from Arfrever3.4.6-03.4
-rw-r--r--patches/24_all_expat-2.2.patch19
1 files changed, 0 insertions, 19 deletions
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"<?xml version\xc2\x85='1.0'?>\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):