summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-12-15 21:09:08 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2023-12-15 21:09:08 +0200
commitd7bb8bd1633bd4a1f06e0ec7833acb763f4a1424 (patch)
treedbaff2d2bcc011a287814c46d8543f4fb9fd6dfc /dev-python/wstools/files
parentdev-python/empy: treeclean (diff)
downloadgentoo-d7bb8bd1633bd4a1f06e0ec7833acb763f4a1424.tar.gz
gentoo-d7bb8bd1633bd4a1f06e0ec7833acb763f4a1424.tar.bz2
gentoo-d7bb8bd1633bd4a1f06e0ec7833acb763f4a1424.zip
dev-python/wstools: treeclean
Closes: https://bugs.gentoo.org/916856 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/wstools/files')
-rw-r--r--dev-python/wstools/files/wstools-0.4.8-fix-py3.10.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/wstools/files/wstools-0.4.8-fix-py3.10.patch b/dev-python/wstools/files/wstools-0.4.8-fix-py3.10.patch
deleted file mode 100644
index 4baf12faf570..000000000000
--- a/dev-python/wstools/files/wstools-0.4.8-fix-py3.10.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-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
-