From 58a3580836eca58c4a0c02cedc8a8d6080b8ab59 Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Fri, 28 Jun 2024 14:33:31 +0530 Subject: [PATCH] gh-107803: add whatsnew for asyncio double linked list implementation (#120995) --- Doc/whatsnew/3.14.rst | 8 ++++++++ 1 file changed, 8 insertions(+) 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`.) +