diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-03 09:29:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 09:29:07 (GMT) |
commit | cc663b7e25539d938bf71bc1b4d69efd8824c2d3 (patch) | |
tree | 9b58709b49dc0eff2c65d5e0d68ad79285695d30 /Misc | |
parent | c3fc3a2db84886f13bf020d7a1ec7f6b9ef1b775 (diff) | |
download | cpython-cc663b7e25539d938bf71bc1b4d69efd8824c2d3.zip cpython-cc663b7e25539d938bf71bc1b4d69efd8824c2d3.tar.gz cpython-cc663b7e25539d938bf71bc1b4d69efd8824c2d3.tar.bz2 |
[3.13] gh-119336: Restore removed _PyLong_NumBits() function (GH-119418) (#119970)
gh-119336: Restore removed _PyLong_NumBits() function (GH-119418)
It is used by the pywin32 project.
(cherry picked from commit e50fac96e82d857ecc024b4cd4e012493b077064)
Co-authored-by: Ethan Smith <ethan@ethanhs.me>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2024-05-22-17-50-48.gh-issue-119336.ff3qnS.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-05-22-17-50-48.gh-issue-119336.ff3qnS.rst b/Misc/NEWS.d/next/C API/2024-05-22-17-50-48.gh-issue-119336.ff3qnS.rst new file mode 100644 index 0000000..e530bb4 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2024-05-22-17-50-48.gh-issue-119336.ff3qnS.rst @@ -0,0 +1 @@ +Restore the removed ``_PyLong_NumBits()`` function. It is used by the pywin32 project. Patch by Ethan Smith |