summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/test_server/files/test_server-0.0.31-fix-py3.10.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/test_server/files/test_server-0.0.31-fix-py3.10.patch b/dev-python/test_server/files/test_server-0.0.31-fix-py3.10.patch
deleted file mode 100644
index 755a641440a5..000000000000
--- a/dev-python/test_server/files/test_server-0.0.31-fix-py3.10.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
-Date: Fri, 10 Apr 2020 06:30:21 +0000
-Subject: [PATCH] Import ABC from collections.abc instead of collections for
- Python 3 compatibility.
-
---- a/test_server/server.py
-+++ b/test_server/server.py
-@@ -6,7 +6,11 @@
- import time
- import types
- from six.moves.urllib.parse import urljoin
--from collections import defaultdict, Iterable
-+from collections import defaultdict
-+try:
-+ from collections.abc import Iterable
-+except ImportError:
-+ from collections import Iterable
-
- import six
- from webtest.http import StopableWSGIServer