mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
gh-127949: fix resource warnings in test_tasks.py
(#128172)
This commit is contained in:
parent
228f275737
commit
b66a4ad9fc
1 changed files with 8 additions and 8 deletions
|
@ -2698,17 +2698,17 @@ class BaseTaskTests:
|
|||
initial_refcount = sys.getrefcount(obj)
|
||||
|
||||
coro = coroutine_function()
|
||||
loop = asyncio.new_event_loop()
|
||||
task = asyncio.Task.__new__(asyncio.Task)
|
||||
with contextlib.closing(asyncio.EventLoop()) as loop:
|
||||
task = asyncio.Task.__new__(asyncio.Task)
|
||||
|
||||
for _ in range(5):
|
||||
with self.assertRaisesRegex(RuntimeError, 'break'):
|
||||
task.__init__(coro, loop=loop, context=obj, name=Break())
|
||||
for _ in range(5):
|
||||
with self.assertRaisesRegex(RuntimeError, 'break'):
|
||||
task.__init__(coro, loop=loop, context=obj, name=Break())
|
||||
|
||||
coro.close()
|
||||
del task
|
||||
coro.close()
|
||||
del task
|
||||
|
||||
self.assertEqual(sys.getrefcount(obj), initial_refcount)
|
||||
self.assertEqual(sys.getrefcount(obj), initial_refcount)
|
||||
|
||||
|
||||
def add_subclass_tests(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue