diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-03-15 13:27:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 13:27:30 (GMT) |
commit | 6dfe09fc5fd5a3ddc6009d5656e635eae30c5240 (patch) | |
tree | e9cc5549481c3aa719d1e902f068bc1fa3205b23 /Misc | |
parent | 5dd7ec52b83e7f239774cf7478106fcc7b0a36f3 (diff) | |
download | cpython-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.rst | 1 |
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. |