From: Kumar Aditya Date: Fri, 28 Jun 2024 09:03:31 +0000 (+0530) Subject: gh-107803: add whatsnew for asyncio double linked list implementation (#120995) X-Git-Tag: v3.14.0a1~1299 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58a3580836eca58c4a0c02cedc8a8d6080b8ab59;p=thirdparty%2FPython%2Fcpython.git gh-107803: add whatsnew for asyncio double linked list implementation (#120995) --- diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 9662044915b8..ee3001661b31 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`.) +