summaryrefslogtreecommitdiff
path: root/dev-python/wstools/files/wstools-0.4.8-fix-py3.10.patch
blob: 4baf12faf570e2ca5f73af38ea09c47087ef7ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From c0aa811a845e78c27ef949b4dbc82dfcd9c3da68 Mon Sep 17 00:00:00 2001
From: Arthur Zamarin <arthurzam@gentoo.org>
Date: Thu, 19 Aug 2021 22:27:48 +0300
Subject: [PATCH] Fix import collections.abc for python 3.10

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
---
 wstools/Utility.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/wstools/Utility.py b/wstools/Utility.py
index c1ccd65..f5f1453 100644
--- a/wstools/Utility.py
+++ b/wstools/Utility.py
@@ -33,7 +33,10 @@ try:
     from UserDict import DictMixin  # noqa
 except ImportError:
     from collections import UserDict
-    from collections import MutableMapping as DictMixin  # noqa
+    try:
+        from collections.abc import MutableMapping as DictMixin  # noqa
+    except ImportError:
+        from collections import MutableMapping as DictMixin  # noqa
 
 from .TimeoutSocket import TimeoutSocket, TimeoutError  # noqa
 
-- 
2.33.0