summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-12-29 09:52:44 +0100
committerDavid Seifert <soap@gentoo.org>2019-12-29 09:52:44 +0100
commit39c2a1122c5d2ca602011b81767dec1370250b61 (patch)
tree7f59e31cd7d28b5bd6da274ba67bfcd1cfac4f4b /dev-python/sh/files
parentdev-python/semantic_version: Remove old (diff)
downloadgentoo-39c2a1122c5d2ca602011b81767dec1370250b61.tar.gz
gentoo-39c2a1122c5d2ca602011b81767dec1370250b61.tar.bz2
gentoo-39c2a1122c5d2ca602011b81767dec1370250b61.zip
dev-python/sh: Remove old
Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/sh/files')
-rw-r--r--dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch b/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch
deleted file mode 100644
index 230b16ae5fb1..000000000000
--- a/dev-python/sh/files/sh-1.12.9-python2-unicode-tests.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/test.py b/test.py
-index 78e00ab..0487594 100644
---- a/test.py
-+++ b/test.py
-@@ -502,7 +502,7 @@ for key in osx_cruft:
- print(os.environ["HERP"] + " " + str(len(os.environ)))
- """ % osx_cruft)
- out = python(py.name, _env=env).strip()
-- self.assertEqual(out, "DERP 1")
-+ self.assertEqual(out, u"DERP 12")
-
- py = create_tmp_test("""
- import os, sys
-@@ -515,7 +515,7 @@ for key in osx_cruft:
- print(sh.HERP + " " + str(len(os.environ)))
- """ % osx_cruft)
- out = python(py.name, _env=env, _cwd=THIS_DIR).strip()
-- self.assertEqual(out, "DERP 1")
-+ self.assertEqual(out, u"DERP 12")
-
-
- def test_which(self):