http://hg.python.org/cpython/rev/7b076911f5f9
changeset: 78820:7b076911f5f9
branch: 2.7
parent: 78813:69952b5599b5
user: Trent Nelson <trent(a)trent.me>
date: Fri Aug 31 17:15:49 2012 -0400
summary:
Remove trailing whitespace in order to silence warnings on HP-UX.
files:
Include/pyfpe.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Include/pyfpe.h b/Include/pyfpe.h
--- a/Include/pyfpe.h
+++ b/Include/pyfpe.h
@@ -4,8 +4,8 @@
extern "C" {
#endif
/*
- ---------------------------------------------------------------------
- / Copyright (c) 1996. \
+ ---------------------------------------------------------------------
+ / Copyright (c) 1996. \
| The Regents of the University of California. |
| All rights reserved. |
| |
@@ -37,8 +37,8 @@
| opinions of authors expressed herein do not necessarily state or |
| reflect those of the United States Government or the University |
| of California, and shall not be used for advertising or product |
- \ endorsement purposes. /
- ---------------------------------------------------------------------
+ \ endorsement purposes. /
+ ---------------------------------------------------------------------
*/
/*
--
Repository URL: http://hg.python.org/cpython
http://hg.python.org/cpython/rev/815b88454e3e
changeset: 78819:815b88454e3e
parent: 78817:d54f047312a8
parent: 78818:c0c7b1998306
user: Trent Nelson <trent(a)trent.me>
date: Fri Aug 31 17:14:31 2012 -0400
summary:
Merge whitespace fix from 3.2.
files:
Include/pyfpe.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Include/pyfpe.h b/Include/pyfpe.h
--- a/Include/pyfpe.h
+++ b/Include/pyfpe.h
@@ -4,8 +4,8 @@
extern "C" {
#endif
/*
- ---------------------------------------------------------------------
- / Copyright (c) 1996. \
+ ---------------------------------------------------------------------
+ / Copyright (c) 1996. \
| The Regents of the University of California. |
| All rights reserved. |
| |
@@ -37,8 +37,8 @@
| opinions of authors expressed herein do not necessarily state or |
| reflect those of the United States Government or the University |
| of California, and shall not be used for advertising or product |
- \ endorsement purposes. /
- ---------------------------------------------------------------------
+ \ endorsement purposes. /
+ ---------------------------------------------------------------------
*/
/*
--
Repository URL: http://hg.python.org/cpython
http://hg.python.org/cpython/rev/c0c7b1998306
changeset: 78818:c0c7b1998306
branch: 3.2
parent: 78814:8877d25119ef
user: Trent Nelson <trent(a)trent.me>
date: Fri Aug 31 17:11:39 2012 -0400
summary:
Remove trailing whitespace in order to silence warnings on HP-UX.
files:
Include/pyfpe.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Include/pyfpe.h b/Include/pyfpe.h
--- a/Include/pyfpe.h
+++ b/Include/pyfpe.h
@@ -4,8 +4,8 @@
extern "C" {
#endif
/*
- ---------------------------------------------------------------------
- / Copyright (c) 1996. \
+ ---------------------------------------------------------------------
+ / Copyright (c) 1996. \
| The Regents of the University of California. |
| All rights reserved. |
| |
@@ -37,8 +37,8 @@
| opinions of authors expressed herein do not necessarily state or |
| reflect those of the United States Government or the University |
| of California, and shall not be used for advertising or product |
- \ endorsement purposes. /
- ---------------------------------------------------------------------
+ \ endorsement purposes. /
+ ---------------------------------------------------------------------
*/
/*
--
Repository URL: http://hg.python.org/cpython
http://hg.python.org/devguide/rev/aadb78f591c8
changeset: 542:aadb78f591c8
user: Brett Cannon <brett(a)python.org>
date: Fri Aug 31 15:58:08 2012 -0400
summary:
Tweak the last commit.
files:
coverage.rst | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/coverage.rst b/coverage.rst
--- a/coverage.rst
+++ b/coverage.rst
@@ -128,13 +128,13 @@
But one of the strengths of coverage.py is its HTML-based reports which let
you visually see what lines of code were not tested::
- ./python -m coverage html -i --omit="*/test/*,*/tests/*,*/Tools/*"
+ ./python -m coverage html -i --omit="*/test/*,*/tests/*,Tools/*"
This will generate an HTML report in a directory named ``htmlcov`` which
-ignores any errors that may arise and
-ignores test modules. You can then open the ``htmlcov/index.html`` file
-in a web browser to view the coverage results along with pages that visibly
-show what lines of code were or were not executed.
+ignores any errors that may arise and ignores modules for which test coverage is
+unimportant (e.g. tests). You can then open the ``htmlcov/index.html`` file in a
+web browser to view the coverage results along with pages that visibly show what
+lines of code were or were not executed.
.. _branch_coverage:
--
Repository URL: http://hg.python.org/devguide
http://hg.python.org/devguide/rev/dba748ac63b4
changeset: 541:dba748ac63b4
user: Brett Cannon <brett(a)python.org>
date: Fri Aug 31 15:42:20 2012 -0400
summary:
Ignore the Tools directory when generating coverage reports.
files:
coverage.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/coverage.rst b/coverage.rst
--- a/coverage.rst
+++ b/coverage.rst
@@ -128,7 +128,7 @@
But one of the strengths of coverage.py is its HTML-based reports which let
you visually see what lines of code were not tested::
- ./python -m coverage html -i --omit="*/test/*,*/tests/*"
+ ./python -m coverage html -i --omit="*/test/*,*/tests/*,*/Tools/*"
This will generate an HTML report in a directory named ``htmlcov`` which
ignores any errors that may arise and
--
Repository URL: http://hg.python.org/devguide