summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2017-10-04 18:21:01 -0500
committerTim Harder <radhermit@gentoo.org>2017-10-04 18:23:03 -0500
commit02e1d32778be622a7069154af6669107756c540b (patch)
tree71e2632f11640620a41021dcad814fdd96a53045 /dev-python/snakeoil/files
parentdev-libs/liblognorm: Bump to v2.0.4 (diff)
downloadgentoo-02e1d32778be622a7069154af6669107756c540b.tar.gz
gentoo-02e1d32778be622a7069154af6669107756c540b.tar.bz2
gentoo-02e1d32778be622a7069154af6669107756c540b.zip
dev-python/snakeoil: remove old
Diffstat (limited to 'dev-python/snakeoil/files')
-rw-r--r--dev-python/snakeoil/files/snakeoil-0.7.1-test.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch b/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch
deleted file mode 100644
index 73e2701b0eb2..000000000000
--- a/dev-python/snakeoil/files/snakeoil-0.7.1-test.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 8ee72903bc714725fbcfdcc38b9228772758b890 Mon Sep 17 00:00:00 2001
-From: Tim Harder <radhermit@gmail.com>
-Date: Fri, 27 Jan 2017 11:54:39 -0500
-Subject: [PATCH] test: fix delayed instantiation tests for py3.6
-
----
- snakeoil/test/test_obj.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/snakeoil/test/test_obj.py b/snakeoil/test/test_obj.py
-index abcad55..f8aafd2 100644
---- a/snakeoil/test/test_obj.py
-+++ b/snakeoil/test/test_obj.py
-@@ -29,7 +29,7 @@ def test_simple(self):
-
- def test_descriptor_awareness(self):
- def assertKls(cls, ignores=(),
-- default_ignores=("__new__", "__init__",
-+ default_ignores=("__new__", "__init__", "__init_subclass__",
- "__getattribute__", "__class__",
- "__getnewargs__", "__doc__")):
- required = set(x for x in dir(cls)
-@@ -53,7 +53,7 @@ def test_BaseDelayedObject(self):
- # assert that all methods/descriptors of object
- # are covered via the base.
- o = set(dir(object)).difference("__%s__" % x for x in [
-- "class", "getattribute", "new", "init", "doc"])
-+ "class", "getattribute", "new", "init", "init_subclass", "doc"])
- diff = o.difference(obj.base_kls_descriptors)
- self.assertFalse(diff, msg=(
- "base delayed instantiation class should cover all of object, but "