chore: stop tracking Python .pyc artifacts; ignore them repo-wide
tests / build-and-test (push) Successful in 3m7s
tests / thread-sanitizer (push) Successful in 3m41s
tests / tshark-dissector (push) Successful in 2m25s
tests / secs4j-interop (push) Successful in 1m6s
tests / python-interop (push) Successful in 3m28s
tests / libfuzzer (push) Successful in 3m40s

The package's __pycache__/*.pyc were committed (regenerated on every build,
churning diffs and risking stale bytecode). Untrack all 7, add Python cache
patterns to the root .gitignore, and drop the now-redundant interop/.gitignore
(the root rule covers it).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 22:11:59 +02:00
parent 8a55137e57
commit c76ac1023e
9 changed files with 6 additions and 1 deletions
+6
View File
@@ -9,6 +9,12 @@ build-tsan/
.DS_Store .DS_Store
compile_commands.json compile_commands.json
# Python build/cache artifacts
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
# Local Claude Code agent state (memory, skills, etc.) # Local Claude Code agent state (memory, skills, etc.)
.claude/ .claude/
build-tsan-d/ build-tsan-d/
-1
View File
@@ -1 +0,0 @@
__pycache__/