From bd77b8b14bb5cdb607b2746ba8d731d6aa4b7aac Mon Sep 17 00:00:00 2001 From: Zaki Date: Sat, 14 Mar 2026 11:57:42 -0700 Subject: [PATCH] chore: add __pycache__ and *.pyc to .gitignore Prevent Python bytecode from being committed. Several open PRs accidentally included __pycache__/ directories. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 51b461f2..ed64c242 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,10 @@ target/ +# Python +__pycache__/ +*.pyc + # Benchmark results (local runs, not committed) bench-results/