git: ignore python bytecode files

After you run a python script, a .pyc file is often left behind,
which we don't want to track in git.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Bruce Richardson 2019-03-11 10:57:30 +00:00 committed by Thomas Monjalon
parent 48e16ad260
commit 5957cda7af

3
.gitignore vendored
View File

@ -16,3 +16,6 @@ GPATH
GRTAGS
tags
TAGS
# ignore python bytecode files
*.pyc