summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/vdf/files/vdf-3.3-collections_abc.patch')
-rw-r--r--dev-python/vdf/files/vdf-3.3-collections_abc.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/vdf/files/vdf-3.3-collections_abc.patch b/dev-python/vdf/files/vdf-3.3-collections_abc.patch
deleted file mode 100644
index 22c647601688..000000000000
--- a/dev-python/vdf/files/vdf-3.3-collections_abc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/vdf/vdict.py
-+++ b/vdf/vdict.py
-@@ -5,7 +5,7 @@
- _iter_values = 'values'
- _range = range
- _string_type = str
-- import collections as _c
-+ import collections.abc as _c
- class _kView(_c.KeysView):
- def __iter__(self):
- return self._mapping.iterkeys()