mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
gh-127949: deprecate asyncio.get_event_loop_policy
(#128053)
This deprecates `asyncio.get_event_loop_policy` and will be removed in Python 3.16.
This commit is contained in:
parent
bad3cdefa8
commit
dbd08fb60d
9 changed files with 40 additions and 26 deletions
|
@ -886,8 +886,7 @@ if sys.platform != 'win32':
|
|||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
policy = asyncio.get_event_loop_policy()
|
||||
self.loop = policy.new_event_loop()
|
||||
self.loop = asyncio.new_event_loop()
|
||||
self.set_event_loop(self.loop)
|
||||
|
||||
def test_watcher_implementation(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue