8000 gh-108444: Add PyLong_AsInt() public function by vstinner · Pull Request #108445 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-108444: Add PyLong_AsInt() public function #108445

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Doc/whatsnew/3.13.rst
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
  • Loading branch information
vstinner and Eclips4 authored Aug 24, 2023
commit 5f1564669e883b14b93c3dd289addd08b2ed4be7
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.13.rst
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ New Features

* Add :c:func:`PyLong_AsInt` function: similar to :c:func:`PyLong_AsLong`, but
store the result in a C :c:expr:`int` instead of a C :c:expr:`long`.
Previously, it was known as the the private function :c:func:`!_PyLong_AsInt`
Previously, it was known as the private function :c:func:`!_PyLong_AsInt`
(with an underscore prefix).
(Contributed by Victor Stinner in :gh:`108014`.)

Expand Down
0