cpython (3.2): Make VCSes ignore the compiled shared library file (#12255)
http://hg.python.org/cpython/rev/4d351135f128 changeset: 71561:4d351135f128 branch: 3.2 parent: 71527:c3aebd01a033 user: Éric Araujo <merwok@netwok.org> date: Thu Jul 28 22:38:44 2011 +0200 summary: Make VCSes ignore the compiled shared library file (#12255) files: .bzrignore | 1 + .gitignore | 1 + .hgignore | 1 + 3 files changed, 3 insertions(+), 0 deletions(-) diff --git a/.bzrignore b/.bzrignore --- a/.bzrignore +++ b/.bzrignore @@ -14,6 +14,7 @@ pybuilddir.txt pyconfig.h libpython*.a +libpython*.so* python.exe python-gdb.py reflog.txt diff --git a/.gitignore b/.gitignore --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,7 @@ config.log config.status libpython*.a +libpython*.so* pybuilddir.txt pyconfig.h python diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -39,6 +39,7 @@ syntax: glob libpython*.a +libpython*.so* *.swp *.o *.pyc -- Repository URL: http://hg.python.org/cpython
participants (1)
-
eric.araujo