commit: e0b6fbdf6543c19c63bbca007278d48003b807ad
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 7 09:28:08 2021 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Mar 7 09:28:37 2021 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e0b6fbdf
AsyncioEventLoop: remove obsolete supports_multiprocessing attribute
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
lib/portage/util/_eventloop/asyncio_event_loop.py | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/lib/portage/util/_eventloop/asyncio_event_loop.py
b/lib/portage/util/_eventloop/asyncio_event_loop.py
index b77728088..6dfac3569 100644
--- a/lib/portage/util/_eventloop/asyncio_event_loop.py
+++ b/lib/portage/util/_eventloop/asyncio_event_loop.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2020 Gentoo Authors
+# Copyright 2018-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
import os
@@ -17,11 +17,6 @@ class AsyncioEventLoop(_AbstractEventLoop):
event loop and is minimally compatible with _PortageEventLoop.
"""
- # Use portage's internal event loop in subprocesses, as a workaround
- # for https://bugs.python.org/issue22087, and also
- # https://bugs.python.org/issue29703 which affects pypy3-5.10.1.
- supports_multiprocessing = False
-
def __init__(self, loop=None):
loop = loop or _real_asyncio.get_event_loop()
self._loop = loop