mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
bpo-33562: Check the global asyncio event loop policy isn't set after any tests (GH-7328)
This commit is contained in:
parent
de6516264e
commit
8425de4147
26 changed files with 98 additions and 2 deletions
|
@ -10,10 +10,15 @@ if sys.platform != 'win32':
|
|||
import _overlapped
|
||||
import _winapi
|
||||
|
||||
import asyncio
|
||||
from asyncio import windows_utils
|
||||
from test import support
|
||||
|
||||
|
||||
def tearDownModule():
|
||||
asyncio.set_event_loop_policy(None)
|
||||
|
||||
|
||||
class PipeTests(unittest.TestCase):
|
||||
|
||||
def test_pipe_overlapped(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue