From d1a366fdd4a0f60e0487bd45a8b456804c75ea5d Mon Sep 17 00:00:00 2001 From: Krzysztof Blazewicz Date: Sat, 27 Aug 2016 10:15:00 +0200 Subject: [PATCH] .gitignore: Add *.pyc, because Python 2 doesn't use __pycache__. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 450bbd8639..a6295928d3 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ tests/*.out # Python cache files ###################### __pycache__/ +*.pyc # Customized Makefile/project overrides ######################