8000 gh-90110: Fix the c-analyzer Tool by ericsnowcurrently · Pull Request #102483 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-90110: Fix the c-analyzer Tool #102483

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Temporarily skip parser-failing files.
  • Loading branch information
ericsnowcurrently committed Mar 6, 2023
commit cf93eb5482602be6322b0ea4037d63bc76a8d69c
9 changes: 9 additions & 0 deletions Tools/c-analyzer/cpython/_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ def clean_lines(text):
EXCLUDED = clean_lines('''
# @begin=conf@

Modules/_hacl/*.h
Modules/_hacl/*.c
Modules/sha1module.c
Modules/sha2module.c
Modules/md5module.c
Objects/genobject.c
Python/import.c
Python/Python-ast.c

# OSX
Modules/_scproxy.c # SystemConfiguration/SystemConfiguration.h

Expand Down
0