From a593c626bb767924a55769c981ff75c65ad0fbd1 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 19 Jul 2017 09:28:56 +0200 Subject: [PATCH] gitignore: ignore python compiled files (*.pyc) --- .gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 63e57bd2a5..7390ab1c1e 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,9 @@ Makefile.local .clang_complete # YouCompleteMe (https://github.com/Valloric/YouCompleteMe) .ycm_extra_conf.py -.ycm_extra_conf.pyc -__pycache__ + +# Python compiled files +*.pyc + +# Ignore download cache .dlcache