diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-06 15:56:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 15:56:08 +0200 |
commit | b298b395e8ab1725c4f0dd736155b8c818664d42 (patch) | |
tree | 7946296ed34254283f71a70004b06fe7a7d2c30d /Python/intrinsics.c | |
parent | 14d6e197cc56e5256d501839a4e66e3864ab15f0 (diff) | |
download | cpython-b298b395e8ab1725c4f0dd736155b8c818664d42.tar.gz cpython-b298b395e8ab1725c4f0dd736155b8c818664d42.zip |
gh-108765: Cleanup #include in Python/*.c files (#108977)
Mention one symbol imported by each #include.
Diffstat (limited to 'Python/intrinsics.c')
-rw-r--r-- | Python/intrinsics.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/intrinsics.c b/Python/intrinsics.c index 8e59c63aea3..bbd79ec473f 100644 --- a/Python/intrinsics.c +++ b/Python/intrinsics.c @@ -5,11 +5,11 @@ #include "pycore_frame.h" #include "pycore_function.h" #include "pycore_global_objects.h" -#include "pycore_intrinsics.h" -#include "pycore_pyerrors.h" -#include "pycore_runtime.h" +#include "pycore_intrinsics.h" // INTRINSIC_PRINT +#include "pycore_pyerrors.h" // _PyErr_SetString() +#include "pycore_runtime.h" // _Py_ID() #include "pycore_sysmodule.h" // _PySys_GetAttr() -#include "pycore_typevarobject.h" +#include "pycore_typevarobject.h" // _Py_make_typevar() /******** Unary functions ********/ |