From: Sergey Matveev Date: Sat, 30 Nov 2024 15:31:22 +0000 (+0300) Subject: Remove ignore of the files that should not be generated X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0f735674c530c48801baae8d344b6730a6c92211e0b545f6f7b88eb5b6ea9a50;p=keks.git 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. --- 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