From 0f735674c530c48801baae8d344b6730a6c92211e0b545f6f7b88eb5b6ea9a50 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 30 Nov 2024 18:31:22 +0300 Subject: [PATCH] Remove ignore of the files that should not be generated Although pyac is Python project and it is reasonable to include .pyc, __pycache__ ignores, but I am confident, that an adequate Python setup must not generate them at all. They are more than useless and must be globally disabled on the system (PYTHONDONTWRITEBYTECODE=1), so should not appear at all. Even if they are created, user should ignore them globally in its own global .gitignore, rather in each Python-related project. --- pyac/.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyac/.gitignore b/pyac/.gitignore index e98df0e..d276428 100644 --- a/pyac/.gitignore +++ b/pyac/.gitignore @@ -1,4 +1,2 @@ -__pycache__ -*.pyc .coverage .hypothesis -- 2.50.0