diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-19 00:04:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 00:04:52 (GMT) |
commit | 5f09bb021a2862ba89c3ecb53e7e6e95a9e07e1d (patch) | |
tree | a7e0aaa8abfd098cc990c8137d65164e2bc40ebd /PCbuild | |
parent | aad88d33d9db0a93e480f0234292b948890dfc2a (diff) | |
download | cpython-5f09bb021a2862ba89c3ecb53e7e6e95a9e07e1d.zip cpython-5f09bb021a2862ba89c3ecb53e7e6e95a9e07e1d.tar.gz cpython-5f09bb021a2862ba89c3ecb53e7e6e95a9e07e1d.tar.bz2 |
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()
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index a26ba9c..1b484be 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -140,6 +140,7 @@ <ClInclude Include="..\Include\cpython\initconfig.h" /> <ClInclude Include="..\Include\cpython\listobject.h" /> <ClInclude Include="..\Include\cpython\longintrepr.h" /> + <ClInclude Include="..\Include\cpython\longobject.h" /> <ClInclude Include="..\Include\cpython\methodobject.h" /> <ClInclude Include="..\Include\cpython\object.h" /> <ClInclude Include="..\Include\cpython\objimpl.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 335bfb3..c151976 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -387,6 +387,9 @@ <ClInclude Include="..\Include\cpython\longintrepr.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\longobject.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\odictobject.h"> <Filter>Include</Filter> </ClInclude> |