diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-04-28 00:56:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-28 00:56:40 (GMT) |
commit | 219a3f991a58765103c4fa89b705906ff1600b7a (patch) | |
tree | 1c0c2dba4ea8b7fc21b8cb10e26db5356cd68c5a | |
parent | 24404b4c92fc4195422c38563d0c6204fa7b16b1 (diff) | |
download | cpython-219a3f991a58765103c4fa89b705906ff1600b7a.zip cpython-219a3f991a58765103c4fa89b705906ff1600b7a.tar.gz cpython-219a3f991a58765103c4fa89b705906ff1600b7a.tar.bz2 |
Update gitignore from master (#1329)
Ignore more generated files.
-rw-r--r-- | .gitignore | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,7 @@ +# Two-trick pony for OSX and other case insensitive file systems: +# Ignore ./python binary on Unix but still look into ./Python/ directory. +/python +!/Python/ *.cover *.o *.orig @@ -5,6 +9,7 @@ *.pyd *.pyo *.rej +*.swp *~ *.gc?? *.profclang? @@ -39,14 +44,20 @@ Parser/pgen Parser/pgen.stamp autom4te.cache build/ +config.cache config.log config.status libpython*.a libpython*.so* +libpython*.dylib +libpython*.dll +pybuilddir.txt pyconfig.h python$ +python.exe python-gdb.py tags +TAGS .coverage coverage/ externals/ |