From 67352bdad773eb87cc46e3117735146f3cccb8d0 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 21 Feb 2011 19:24:10 +0000 Subject: Ignore Vim .swp files. --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 3dda95c971..e9286447d6 100644 --- a/.hgignore +++ b/.hgignore @@ -39,6 +39,7 @@ Parser/pgen.stamp$ syntax: glob libpython*.a +*.swp *.o *.pyc *.pyo -- cgit v1.2.1 From b22d16515cbe0fba02bba5dc2149e1e1687ec40f Mon Sep 17 00:00:00 2001 From: "brian.curtin" Date: Mon, 4 Apr 2011 13:00:49 -0500 Subject: Add x64-temp to ignore, prepend a forward slash to "build/" to include PCbuild/ changes (for VS project files, etc). --- .hgignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 70aca54936..4452f844cf 100644 --- a/.hgignore +++ b/.hgignore @@ -5,7 +5,7 @@ Makefile$ Makefile.pre$ TAGS$ autom4te.cache$ -build/ +/build/ buildno$ config.cache config.log @@ -63,4 +63,5 @@ PCbuild/*.o PCbuild/*.ncb PCbuild/*.bsc PCbuild/Win32-temp-* +PCbuild/x64-temp-* __pycache__ -- cgit v1.2.1 From 5dc66f8449f910ff6f69a97ce75e600f7a0a20ee Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 4 Apr 2011 20:52:50 +0200 Subject: Ignore build/ and Doc/build --- .hgignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 4452f844cf..81941b2351 100644 --- a/.hgignore +++ b/.hgignore @@ -5,7 +5,8 @@ Makefile$ Makefile.pre$ TAGS$ autom4te.cache$ -/build/ +^build/ +^Doc/build/ buildno$ config.cache config.log -- cgit v1.2.1 From 8050879b92f9501355361d867b337c51b6048ce1 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 4 Apr 2011 20:55:12 +0200 Subject: Ignore AMD64 build files under Windows --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 81941b2351..dd4e9bba05 100644 --- a/.hgignore +++ b/.hgignore @@ -33,6 +33,7 @@ Modules/config.c Modules/ld_so_aix$ Parser/pgen$ Parser/pgen.stamp$ +PCbuild/amd64/ ^core ^python-gdb.py ^python.exe-gdb.py -- cgit v1.2.1 From 008ebbd9acdeefca40712e8080d8c3e48fdb5056 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 4 Apr 2011 20:55:48 +0200 Subject: Ignore other MSVC by-products --- .hgignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index dd4e9bba05..bba99a46e9 100644 --- a/.hgignore +++ b/.hgignore @@ -64,6 +64,8 @@ PCbuild/*.exp PCbuild/*.o PCbuild/*.ncb PCbuild/*.bsc +PCbuild/*.user +PCbuild/*.suo PCbuild/Win32-temp-* PCbuild/x64-temp-* __pycache__ -- cgit v1.2.1 From c24f525e1a82d476336245e6860453463e207a55 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 25 Jun 2011 12:36:38 +0300 Subject: #12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi. --- .hgignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index 6a2615b94b..efb013e74b 100644 --- a/.hgignore +++ b/.hgignore @@ -73,3 +73,6 @@ Modules/_testembed .coverage coverage/ htmlcov/ +.coverage +coverage/ +htmlcov/ -- cgit v1.2.1 From e469bb9c7411a72b0e5951a1339c5074f8aa6921 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 25 Jun 2011 20:10:39 +0300 Subject: Backed out changeset ef306bd1d122 --- .hgignore | 3 --- 1 file changed, 3 deletions(-) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index efb013e74b..6a2615b94b 100644 --- a/.hgignore +++ b/.hgignore @@ -73,6 +73,3 @@ Modules/_testembed .coverage coverage/ htmlcov/ -.coverage -coverage/ -htmlcov/ -- cgit v1.2.1