[Python-checkins] cpython: #12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi.
ezio.melotti
python-checkins at python.org
Sat Jun 25 17:38:59 CEST 2011
http://hg.python.org/cpython/rev/ef306bd1d122
changeset: 70979:ef306bd1d122
user: Ezio Melotti <ezio.melotti at gmail.com>
date: Sat Jun 25 12:36:38 2011 +0300
summary:
#12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi.
files:
.bzrignore | 3 +++
.gitignore | 3 +++
.hgignore | 3 +++
3 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/.bzrignore b/.bzrignore
--- a/.bzrignore
+++ b/.bzrignore
@@ -40,3 +40,6 @@
.coverage
coverage/*
htmlcov/*
+.coverage
+coverage/*
+htmlcov/*
diff --git a/.gitignore b/.gitignore
--- a/.gitignore
+++ b/.gitignore
@@ -45,3 +45,6 @@
.coverage
coverage/
htmlcov/
+.coverage
+coverage/
+htmlcov/
diff --git a/.hgignore b/.hgignore
--- a/.hgignore
+++ b/.hgignore
@@ -73,3 +73,6 @@
.coverage
coverage/
htmlcov/
+.coverage
+coverage/
+htmlcov/
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list