summaryrefslogtreecommitdiffstats
path: root/Tools/c-analyzer/cpython/_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/c-analyzer/cpython/_files.py')
-rw-r--r--Tools/c-analyzer/cpython/_files.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/c-analyzer/cpython/_files.py b/Tools/c-analyzer/cpython/_files.py
index 3e39788..ee9e46f 100644
--- a/Tools/c-analyzer/cpython/_files.py
+++ b/Tools/c-analyzer/cpython/_files.py
@@ -6,15 +6,17 @@ from . import REPO_ROOT, INCLUDE_DIRS, SOURCE_DIRS
GLOBS = [
'Include/*.h',
+ # Technically, this is covered by "Include/*.h":
+ #'Include/cpython/*.h',
'Include/internal/*.h',
'Modules/**/*.h',
'Modules/**/*.c',
'Objects/**/*.h',
'Objects/**/*.c',
- 'Python/**/*.h',
+ 'Parser/**/*.h',
'Parser/**/*.c',
'Python/**/*.h',
- 'Parser/**/*.c',
+ 'Python/**/*.c',
]
LEVEL_GLOBS = {
'stable': 'Include/*.h',