We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54bfe45 commit 08bc017Copy full SHA for 08bc017
pytest_twisted.py
@@ -1,6 +1,5 @@
1
import functools
2
import inspect
3
-import sys
4
import warnings
5
6
import decorator
@@ -273,15 +272,6 @@ def init_qt5_reactor():
273
272
274
275
def init_asyncio_reactor():
276
- if sys.platform == 'win32':
277
- if sys.version_info >= (3, 8):
278
- # If twisted releases a fix/workaround we can check that version too
279
- # https://twistedmatrix.com/trac/ticket/9766
280
- import asyncio
281
-
282
- selector_policy = asyncio.WindowsSelectorEventLoopPolicy()
283
- asyncio.set_event_loop_policy(selector_policy)
284
285
from twisted.internet import asyncioreactor
286
287
_install_reactor(
0 commit comments