summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-19 19:42:29 +0200
committerDavid Seifert <soap@gentoo.org>2016-10-08 19:59:45 +0200
commit64bc469132518df42c5918c52d18bfb56a313845 (patch)
treec98dcc0887092b79d7e8b9fd88f90150438a18ab /dev-python/pyxattr
parentdev-python/python-nss: remove unused patches (diff)
downloadgentoo-64bc469132518df42c5918c52d18bfb56a313845.tar.gz
gentoo-64bc469132518df42c5918c52d18bfb56a313845.tar.bz2
gentoo-64bc469132518df42c5918c52d18bfb56a313845.zip
dev-python/pyxattr: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2363 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/pyxattr')
-rw-r--r--dev-python/pyxattr/files/pyxattr-0.5.1-test-bytes.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/pyxattr/files/pyxattr-0.5.1-test-bytes.patch b/dev-python/pyxattr/files/pyxattr-0.5.1-test-bytes.patch
deleted file mode 100644
index 6ff4bd052218..000000000000
--- a/dev-python/pyxattr/files/pyxattr-0.5.1-test-bytes.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit ea7421018090b7099c5e0a6bd88180f41ebb7bce
-Author: Mike Gilbert <floppym@gentoo.org>
-Date: Fri Dec 21 16:33:18 2012 -0500
-
- Python 2.5 can't parse byte literals, so use bytes() instead.
-
-diff --git a/test/test_xattr.py b/test/test_xattr.py
-index 8df00b9..0bca576 100644
---- a/test/test_xattr.py
-+++ b/test/test_xattr.py
-@@ -12,7 +12,7 @@ from xattr import NS_USER, XATTR_CREATE, XATTR_REPLACE
-
- if sys.hexversion >= 0x03000000:
- PY3K = True
-- EMPTY_NS = b''
-+ EMPTY_NS = bytes()
- else:
- PY3K = False
- EMPTY_NS = ''