summaryrefslogtreecommitdiff
path: root/dev-python/vdf/files/vdf-3.3-collections_abc.patch
blob: 22c6476016888fad7076ac171eb85261a5166078 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- 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()