diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2019-09-12 14:41:14 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-09-12 14:41:14 (GMT) |
commit | c6734ee7c55add5fdc2c821729ed5f67e237a096 (patch) | |
tree | dff6a44ef10562410a84db38ffef481e76eb22cb /Misc/NEWS.d/next/Core and Builtins | |
parent | 8d88e8c662a80c186c7a0e67f1c1f3d4010276f8 (diff) | |
download | cpython-c6734ee7c55add5fdc2c821729ed5f67e237a096.zip cpython-c6734ee7c55add5fdc2c821729ed5f67e237a096.tar.gz cpython-c6734ee7c55add5fdc2c821729ed5f67e237a096.tar.bz2 |
bpo-37802: Slightly improve perfomance of PyLong_FromUnsigned*() (GH-15192)
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-08-09-18-28-57.bpo-37802.pKxcAW.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-08-09-18-28-57.bpo-37802.pKxcAW.rst b/Misc/NEWS.d/next/Core and Builtins/2019-08-09-18-28-57.bpo-37802.pKxcAW.rst new file mode 100644 index 0000000..dc0a238 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-08-09-18-28-57.bpo-37802.pKxcAW.rst @@ -0,0 +1,3 @@ +Slightly improve performance of :c:func:`PyLong_FromUnsignedLong`, +:c:func:`PyLong_FromUnsignedLongLong` and :c:func:`PyLong_FromSize_t`. +Patch by Sergey Fedoseev. |