Add .gitignore to ignore .pyc/.pyo files

Since we just added lib/ containing python modules, we should really
ignore any compiled python objects since they will be produced if the
code is executed.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Paul Eggleton
2016-03-01 11:27:36 +13:00
committed by Martin Jansa
parent c1cf7c4a4c
commit bd4c475915

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.pyc
*.pyo