cpython (2.7): Make VCSes ignore the compiled shared library file (#12255)
http://hg.python.org/cpython/rev/9356d2d61e9f changeset: 71589:9356d2d61e9f branch: 2.7 user: Éric Araujo <merwok@netwok.org> date: Fri Jul 29 12:07:04 2011 +0200 summary: Make VCSes ignore the compiled shared library file (#12255) files: .bzrignore | 1 + .hgignore | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/.bzrignore b/.bzrignore --- a/.bzrignore +++ b/.bzrignore @@ -13,6 +13,7 @@ platform pyconfig.h libpython*.a +libpython*.so* python.exe python-gdb.py reflog.txt diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -38,6 +38,7 @@ syntax: glob python.exe-gdb.py libpython*.a +libpython*.so* *.swp *.o *.pyc -- Repository URL: http://hg.python.org/cpython
participants (1)
-
eric.araujo