public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/test_server/files/
@ 2022-02-25  9:38 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2022-02-25  9:38 UTC (permalink / raw
  To: gentoo-commits

commit:     de82c304c4716c3ac4b53b5fe14a10a1086c9696
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Feb 25 06:39:31 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb 25 09:38:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de82c304

dev-python/test_server: remove unused patch(es)

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/24344
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../files/test_server-0.0.31-fix-py3.10.patch        | 20 --------------------
 1 file changed, 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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-02-25  9:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-25  9:38 [gentoo-commits] repo/gentoo:master commit in: dev-python/test_server/files/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox