]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
authorVictor Stinner <vstinner@python.org>
Tue, 19 Oct 2021 00:04:52 +0000 (02:04 +0200)
committerGitHub <noreply@github.com>
Tue, 19 Oct 2021 00:04:52 +0000 (02:04 +0200)
commit5f09bb021a2862ba89c3ecb53e7e6e95a9e07e1d
treea7e0aaa8abfd098cc990c8137d65164e2bc40ebd
parentaad88d33d9db0a93e480f0234292b948890dfc2a
bpo-35134: Add Include/cpython/longobject.h (GH-29044)

Move Include/longobject.h non-limited API to a new
Include/cpython/longobject.h header file.

Move the following definitions to the internal C API:

* _PyLong_DigitValue
* _PyLong_FormatAdvancedWriter()
* _PyLong_FormatWriter()
Include/cpython/longobject.h [new file with mode: 0644]
Include/internal/pycore_long.h
Include/longobject.h
Makefile.pre.in
Modules/binascii.c
Objects/bytesobject.c
Objects/unicodeobject.c
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj.filters
Python/formatter_unicode.c
Python/mystrtoul.c