.gitignore: Add *.pyc, because Python 2 doesn't use __pycache__.

This commit is contained in:
Krzysztof Blazewicz 2016-08-27 10:15:00 +02:00 committed by Damien George
parent c777b6950e
commit d1a366fdd4
1 changed files with 1 additions and 0 deletions

1
.gitignore vendored
View File

@ -32,6 +32,7 @@ tests/*.out
# Python cache files # Python cache files
###################### ######################
__pycache__/ __pycache__/
*.pyc
# Customized Makefile/project overrides # Customized Makefile/project overrides
###################### ######################