summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPieter Eendebak <pieter.eendebak@gmail.com>2024-12-30 17:18:42 (GMT)
committerGitHub <noreply@github.com>2024-12-30 17:18:42 (GMT)
commit34b85ef26c44bbbd8a05d3e7dee6997b3623aab0 (patch)
tree997cb2b26d7f6e131fe1cf71da90cb148152c5ec /Misc
parent348012432155271cfbee71a78d0c27254fc230e2 (diff)
downloadcpython-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.rst2
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.