https://github.com/python/cpython/commit/58a3580836eca58c4a0c02cedc8a8d6080b8ab59 commit: 58a3580836eca58c4a0c02cedc8a8d6080b8ab59 branch: main author: Kumar Aditya <[email protected]> committer: kumaraditya303 <[email protected]> date: 2024-06-28T14:33:31+05:30 summary:
gh-107803: add whatsnew for asyncio double linked list implementation (#120995) files: M Doc/whatsnew/3.14.rst diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 9662044915b8ca..ee3001661b3143 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -125,6 +125,14 @@ symtable Optimizations ============= +asyncio +------- + +* :mod:`asyncio` now uses double linked list implementation for native tasks + which speeds up execution by 10% on standard pyperformance benchmarks and + reduces memory usage. + (Contributed by Kumar Aditya in :gh:`107803`.) + _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
