Add Python cache files to .gitignore

- Added __pycache__/ directories
- Added *.py[cod] and *.class files
- Removed tests/integration/__pycache__/ specific entry (now covered by general rule)
This commit is contained in:
Steve Yegge
2025-11-08 02:42:53 -08:00
parent 1da414fa34
commit e6dfcc606a
2 changed files with 7 additions and 1 deletions

8
.gitignore vendored
View File

@@ -82,4 +82,10 @@ npm-package/package-lock.json
.beads/beads.db?*
bd-original
mcp_agent_mail/
tests/integration/__pycache__/
# Python cache files
__pycache__/
*.py[cod]
*$py.class
*.so
.Python