summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-05-19 21:24:31 +0200
committerAaron Bauman <bman@gentoo.org>2020-06-02 00:28:02 -0400
commit0e789c9a5aa3e4cb91acc4973b295438483d3c42 (patch)
tree63ca280aa27944763e948afdec7c59c734837eb5 /dev-python/subprocess32
parentdev-python/requests: remove unused patch(es) (diff)
downloadgentoo-0e789c9a5aa3e4cb91acc4973b295438483d3c42.tar.gz
gentoo-0e789c9a5aa3e4cb91acc4973b295438483d3c42.tar.bz2
gentoo-0e789c9a5aa3e4cb91acc4973b295438483d3c42.zip
dev-python/subprocess32: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-python/subprocess32')
-rw-r--r--dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch b/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch
deleted file mode 100644
index 50e4a511fc4b..000000000000
--- a/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/test_subprocess32.py b/test_subprocess32.py
-index c312949..000f7d6 100644
---- a/test_subprocess32.py
-+++ b/test_subprocess32.py
-@@ -538,7 +538,8 @@ class ProcessTestCase(BaseTestCase):
- [sys.executable, "-c",
- 'import os; '
- 'print([k for k in os.environ.keys() '
-- ' if ("VERSIONER" not in k and "__CF" not in k)])'],
-+ ' if ("VERSIONER" not in k and "__CF" not in k and '
-+ ' "LD_PRELOAD" not in k and "SANDBOX_" not in k)])'],
- stdout=subprocess.PIPE, env={})
- try:
- stdout, stderr = p.communicate()