diff options
author | Pieter Eendebak <pieter.eendebak@gmail.com> | 2024-12-30 17:18:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-30 17:18:42 (GMT) |
commit | 34b85ef26c44bbbd8a05d3e7dee6997b3623aab0 (patch) | |
tree | 997cb2b26d7f6e131fe1cf71da90cb148152c5ec /Misc | |
parent | 348012432155271cfbee71a78d0c27254fc230e2 (diff) | |
download | cpython-34b85ef26c44bbbd8a05d3e7dee6997b3623aab0.zip cpython-34b85ef26c44bbbd8a05d3e7dee6997b3623aab0.tar.gz cpython-34b85ef26c44bbbd8a05d3e7dee6997b3623aab0.tar.bz2 |
gh-128118: Speed up copy.copy with fast lookup for atomic and container types (#128119)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-12-20-10-57-10.gh-issue-128118.mYak8i.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-12-20-10-57-10.gh-issue-128118.mYak8i.rst b/Misc/NEWS.d/next/Library/2024-12-20-10-57-10.gh-issue-128118.mYak8i.rst new file mode 100644 index 0000000..bc2898e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-12-20-10-57-10.gh-issue-128118.mYak8i.rst @@ -0,0 +1,2 @@ +Improve performance of :func:`copy.copy` by 30% via +a fast path for atomic types and container types. |