https://github.com/python/cpython/commit/fcf756adef43a15e5bc2b397d95ca8c6a54d524d commit: fcf756adef43a15e5bc2b397d95ca8c6a54d524d branch: main author: Kumar Aditya <kumaradi...@python.org> committer: kumaraditya303 <kumaradi...@python.org> date: 2025-03-11T19:51:53Z summary:
fix various warnings in `test_asyncio.test_tasks` (#131109) files: M Lib/test/test_asyncio/test_tasks.py diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py index 591b48b88a268c..f1a665e5df3fd3 100644 --- a/Lib/test/test_asyncio/test_tasks.py +++ b/Lib/test/test_asyncio/test_tasks.py @@ -2301,16 +2301,19 @@ class Subclass(Task): def __del__(self): pass - async def coro(): + async def corofn(): await asyncio.sleep(0.01) - task = Subclass(coro(), loop = self.loop) + coro = corofn() + task = Subclass(coro, loop = self.loop) task._log_destroy_pending = False del task support.gc_collect() + coro.close() + @mock.patch('asyncio.base_events.logger') def test_tb_logger_not_called_after_cancel(self, m_log): loop = asyncio.new_event_loop() @@ -2716,12 +2719,12 @@ def __str__(self): coro = coroutine_function() 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()) coro.close() + task._log_destroy_pending = False del task self.assertEqual(sys.getrefcount(obj), initial_refcount) _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com