diff options
Diffstat (limited to 'dev-python/mako/files/pygments-exception.patch')
-rw-r--r-- | dev-python/mako/files/pygments-exception.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/dev-python/mako/files/pygments-exception.patch b/dev-python/mako/files/pygments-exception.patch deleted file mode 100644 index 0d2faca4f688..000000000000 --- a/dev-python/mako/files/pygments-exception.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 8eaf6b7ea92018202a886e1d919e2c6b0d307c99 Mon Sep 17 00:00:00 2001 -From: Mike Bayer <mike_mp@zzzcomputing.com> -Date: Mon, 22 May 2017 22:30:54 -0400 -Subject: [PATCH] - exception test fixes for more recent pygments - -Change-Id: Ibdfe5b2f2f3d1426921bcadf6740ae065ed0833b ---- - test/test_exceptions.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/test/test_exceptions.py b/test/test_exceptions.py -index 8321b25..bcaae3b 100644 ---- a/test/test_exceptions.py -+++ b/test/test_exceptions.py -@@ -91,7 +91,7 @@ def test_utf8_html_error_template_pygments(self): - assert "".encode(sys.getdefaultencoding(), - 'htmlentityreplace') in html_error - else: -- assert 'u''\ -+ assert '''\ - 'привет'\ - ''</span><span class="cp">}</span>'.encode( - sys.getdefaultencoding(), -@@ -220,7 +220,7 @@ def test_utf8_format_exceptions_pygments(self): - assert ''привет'</span>' in \ - l.get_template("foo.html").render().decode('utf-8') - else: -- assert 'u'прив'\ -+ assert ''прив'\ - 'ет'</span>' in \ - l.get_template("foo.html").render().decode('utf-8') - |