From 61776f0de7b2a272d9befe74b469f645b74b8133 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 23 May 2024 11:53:01 -0400 Subject: [PATCH] gitignore: Add __pycache__ These directories are created when running scripts in test/ in-tree, and can safely be ignored. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6a6422379..041a707af 100644 --- a/.gitignore +++ b/.gitignore @@ -187,3 +187,5 @@ compile_commands.json cscope.in.out cscope.out cscope.po.out + +**/__pycache__ -- 2.47.3