You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/vdf/files/vdf-3.3-collections_abc.patch

12 lines
297 B

--- 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()