https://github.com/python/cpython/commit/38d45d23a67edd603f26981c8498dc09c83e8091
commit: 38d45d23a67edd603f26981c8498dc09c83e8091
branch: main
author: Kumar Aditya <kumaradi...@python.org>
committer: kumaraditya303 <kumaradi...@python.org>
date: 2025-02-24T15:37:59Z
summary:

gh-129874: avoid mixing pure python and C impl in eager execution (#130515)

files:
M Lib/asyncio/tasks.py

diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 7f7ee81403a759..06d46deda8d647 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -110,7 +110,7 @@ def __init__(self, coro, *, loop=None, name=None, 
context=None,
             self.__eager_start()
         else:
             self._loop.call_soon(self.__step, context=self._context)
-            _register_task(self)
+            _py_register_task(self)
 
     def __del__(self):
         if self._state == futures._PENDING and self._log_destroy_pending:

_______________________________________________
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

Reply via email to