diff options
author | Victor Stinner <vstinner@python.org> | 2020-10-26 23:00:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 23:00:03 (GMT) |
commit | 8e3b9f92835654943bb59d9658bb52e1b0f40a22 (patch) | |
tree | d22c0d39d03dcfc082dc01b8364cb6e5fe850fef /Makefile.pre.in | |
parent | bca701403253379409dece03053dbd739c0bd059 (diff) | |
download | cpython-8e3b9f92835654943bb59d9658bb52e1b0f40a22.zip cpython-8e3b9f92835654943bb59d9658bb52e1b0f40a22.tar.gz cpython-8e3b9f92835654943bb59d9658bb52e1b0f40a22.tar.bz2 |
bpo-42161: Add _PyLong_GetZero() and _PyLong_GetOne() (GH-22993)
Add _PyLong_GetZero() and _PyLong_GetOne() functions and a new
internal pycore_long.h header file.
Python cannot be built without small integer singletons anymore.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index fe226ce..31f61f3 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1117,6 +1117,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_initconfig.h \ $(srcdir)/Include/internal/pycore_interp.h \ $(srcdir)/Include/internal/pycore_list.h \ + $(srcdir)/Include/internal/pycore_long.h \ $(srcdir)/Include/internal/pycore_object.h \ $(srcdir)/Include/internal/pycore_pathconfig.h \ $(srcdir)/Include/internal/pycore_pyerrors.h \ |