diff options
author | Kumar Aditya <kumaraditya@python.org> | 2024-06-28 09:03:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-28 09:03:31 (GMT) |
commit | 58a3580836eca58c4a0c02cedc8a8d6080b8ab59 (patch) | |
tree | 6625650d46df031fd80dbabc269b0a42688fc75f | |
parent | 1a2e7a747540f74414e7c50556bcb2cc127e9d1c (diff) | |
download | cpython-58a3580836eca58c4a0c02cedc8a8d6080b8ab59.zip cpython-58a3580836eca58c4a0c02cedc8a8d6080b8ab59.tar.gz cpython-58a3580836eca58c4a0c02cedc8a8d6080b8ab59.tar.bz2 |
gh-107803: add whatsnew for asyncio double linked list implementation (#120995)
-rw-r--r-- | Doc/whatsnew/3.14.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 9662044..ee30016 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`.) + |