mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-108216: Cleanup #include in internal header files (#108228)
* Add missing includes. * Remove unused includes. * Update old include/symbol names to newer names. * Mention at least one included symbol. * Sort includes. * Update Tools/cases_generator/generate_cases.py used to generated pycore_opcode_metadata.h. * Update Parser/asdl_c.py used to generate pycore_ast.h. * Cleanup also includes in _testcapimodule.c and _testinternalcapi.c.
This commit is contained in:
parent
b16ecb88e7
commit
0dd3fc2a64
32 changed files with 91 additions and 94 deletions
|
@ -18,8 +18,8 @@
|
|||
#undef NDEBUG
|
||||
|
||||
#include "Python.h"
|
||||
#include "frameobject.h" // PyFrame_New
|
||||
#include "marshal.h" // PyMarshal_WriteLongToFile
|
||||
#include "frameobject.h" // PyFrame_New()
|
||||
#include "marshal.h" // PyMarshal_WriteLongToFile()
|
||||
|
||||
#include <float.h> // FLT_MAX
|
||||
#include <signal.h>
|
||||
|
@ -37,7 +37,7 @@
|
|||
#endif
|
||||
|
||||
#ifdef bool
|
||||
# error "The public headers should not include <stdbool.h>, see bpo-46748"
|
||||
# error "The public headers should not include <stdbool.h>, see gh-48924"
|
||||
#endif
|
||||
|
||||
// Several parts of this module are broken out into files in _testcapi/.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue