diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-15 09:46:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 09:46:29 +0200 |
commit | 8e5de40f90476249e9a2e5ef135143b5c6a0b512 (patch) | |
tree | 4a4442049bd006be2760d8456c4bb6837f5d1db8 /Python | |
parent | 9ce9cfe595d64e3081e69de7296042cc54bccf18 (diff) | |
download | cpython-git-8e5de40f90476249e9a2e5ef135143b5c6a0b512.tar.gz |
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Move classobject.h, context.h, genobject.h and longintrepr.h header
files from Include/ to Include/cpython/.
Remove redundant "#ifndef Py_LIMITED_API" in context.h.
Remove explicit #include "longintrepr.h" in C files. It's not needed,
Python.h already includes it.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/marshal.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index e9ad566b71..51c77555d9 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -13,7 +13,6 @@ #include "pycore_code.h" // _PyCode_New() #include "pycore_floatobject.h" // _PyFloat_Pack8() #include "pycore_hashtable.h" // _Py_hashtable_t -#include "longintrepr.h" #include "code.h" #include "marshal.h" // Py_MARSHAL_VERSION |