diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-09-12 17:09:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 17:09:31 (GMT) |
commit | 1756ffd66a38755cd45de51316d66266ae30e132 (patch) | |
tree | ce0d37b6c3c793e20c05b5d4030c7869968579e0 /Include | |
parent | 662782e95f97d26bd57b3edc6aaf674e30899f44 (diff) | |
download | cpython-1756ffd66a38755cd45de51316d66266ae30e132.zip cpython-1756ffd66a38755cd45de51316d66266ae30e132.tar.gz cpython-1756ffd66a38755cd45de51316d66266ae30e132.tar.bz2 |
gh-90110: Fix the c-analyzer Tool (gh-96731)
This includes:
* update the whitelists
* fixes so we can stop ignoring some of the files
* ensure Include/cpython/*.h get analyzed
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_interp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pycore_interp.h b/Include/internal/pycore_interp.h index a5ddcf2..e7f914e 100644 --- a/Include/internal/pycore_interp.h +++ b/Include/internal/pycore_interp.h @@ -18,7 +18,6 @@ extern "C" { #include "pycore_exceptions.h" // struct _Py_exc_state #include "pycore_floatobject.h" // struct _Py_float_state #include "pycore_genobject.h" // struct _Py_async_gen_state -#include "pycore_gil.h" // struct _gil_runtime_state #include "pycore_gc.h" // struct _gc_runtime_state #include "pycore_list.h" // struct _Py_list_state #include "pycore_tuple.h" // struct _Py_tuple_state |