diff options
author | J. Nick Koston <nick@koston.org> | 2024-10-31 19:05:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 19:05:40 (GMT) |
commit | dd3c0fa3fd2795326dae0e0ed63c668f5506cf32 (patch) | |
tree | 74f97839c0d1159f5dcff80539e68f71c15fb1a5 /Misc/NEWS.d | |
parent | 0e8665554b2f1334e530fd6de5b3a4e908405419 (diff) | |
download | cpython-dd3c0fa3fd2795326dae0e0ed63c668f5506cf32.zip cpython-dd3c0fa3fd2795326dae0e0ed63c668f5506cf32.tar.gz cpython-dd3c0fa3fd2795326dae0e0ed63c668f5506cf32.tar.bz2 |
gh-126156: Improve performance of creating `Morsel` objects (#126157)
Replaces the manually constructed loop with a call to `dict.update`
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-10-30-00-12-22.gh-issue-126156.BOSqv0.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-10-30-00-12-22.gh-issue-126156.BOSqv0.rst b/Misc/NEWS.d/next/Library/2024-10-30-00-12-22.gh-issue-126156.BOSqv0.rst new file mode 100644 index 0000000..4fe1827 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-10-30-00-12-22.gh-issue-126156.BOSqv0.rst @@ -0,0 +1 @@ +Improved performances of creating :py:class:`~http.cookies.Morsel` objects by a factor of 3.8x. |