summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-03-15 13:27:30 (GMT)
committerGitHub <noreply@github.com>2022-03-15 13:27:30 (GMT)
commit6dfe09fc5fd5a3ddc6009d5656e635eae30c5240 (patch)
treee9cc5549481c3aa719d1e902f068bc1fa3205b23 /Misc
parent5dd7ec52b83e7f239774cf7478106fcc7b0a36f3 (diff)
downloadcpython-6dfe09fc5fd5a3ddc6009d5656e635eae30c5240.zip
cpython-6dfe09fc5fd5a3ddc6009d5656e635eae30c5240.tar.gz
cpython-6dfe09fc5fd5a3ddc6009d5656e635eae30c5240.tar.bz2
bpo-46993: Speed up bytearray creation from list and tuple (GH-31834)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-12-09-44-31.bpo-46993.-13hGo.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-12-09-44-31.bpo-46993.-13hGo.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-12-09-44-31.bpo-46993.-13hGo.rst
new file mode 100644
index 0000000..b7f7078
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-12-09-44-31.bpo-46993.-13hGo.rst
@@ -0,0 +1 @@
+Speed up :class:`bytearray` creation from :class:`list` and :class:`tuple` by 40%. Patch by Kumar Aditya.