Skip to content

Commit 080e181

Browse files
committed
Refer to the project consistenly as coverage.py. #275
1 parent c7d226a commit 080e181

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+188
-185
lines changed

CHANGES.txt

+32-27
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Latest
1919
applied even when the report is empty. Thanks, Ionel Cristian Mărieș.
2020

2121
- Plugins are now initialized differently. Instead of looking for a class
22-
called ``Plugin``, coverage looks for a function called ``coverage_init``.
22+
called ``Plugin``, coverage.py looks for a function called ``coverage_init``.
2323

2424
- Code that was executed with `exec` would be mis-attributed to the file that
2525
called it. This is now fixed, closing `issue 380`_.
@@ -30,7 +30,11 @@ Latest
3030
``Coverage.get_data``, and returns the ``CoverageData`` containing the
3131
collected data.
3232

33+
- The project is consistently referred to as "coverage.py" throughout the code
34+
and the documentation, closing `issue 275`_.
35+
3336
.. _issue 236: https://bitbucket.org/ned/coveragepy/issues/236/pickles-are-bad-and-you-should-feel-bad
37+
.. _issue 275: https://bitbucket.org/ned/coveragepy/issues/275/refer-consistently-to-project-as-coverage
3438
.. _issue 380: https://bitbucket.org/ned/coveragepy/issues/380/code-executed-by-exec-excluded-from
3539

3640
.. 41 issues closed in 4.0 below here
@@ -41,7 +45,7 @@ Version 4.0a6 --- 21 June 2015
4145

4246
- Python 3.5b2 and PyPy 2.6.0 are supported.
4347

44-
- The original module-level function interface to coverage is no longer
48+
- The original module-level function interface to coverage.py is no longer
4549
supported. You must now create a ``coverage.Coverage`` object, and use
4650
methods on it.
4751

@@ -116,7 +120,7 @@ Version 4.0a5 --- 16 February 2015
116120
Eduardo Schettino. Currently, this does not work on Windows.
117121

118122
- A new warning is possible, if a desired file isn't measured because it was
119-
imported before coverage was started (`issue 353`_).
123+
imported before coverage.py was started (`issue 353`_).
120124

121125
- The `coverage.process_startup` function now will start coverage measurement
122126
only once, no matter how many times it is called. This fixes problems due
@@ -213,8 +217,8 @@ Version 4.0a2 --- 14 January 2015
213217

214218
- The ``--debug`` switch can now be used on any command.
215219

216-
- You can now programmatically adjust the configuration of coverage by setting
217-
items on `Coverage.config` after construction.
220+
- You can now programmatically adjust the configuration of coverage.py by
221+
setting items on `Coverage.config` after construction.
218222

219223
- A module run with ``-m`` can be used as the argument to ``--source``, fixing
220224
`issue 328`_. Thanks, Buck Evan.
@@ -225,7 +229,7 @@ Version 4.0a2 --- 14 January 2015
225229
- Made some PyPy-specific tweaks to improve speed under PyPy. Thanks, Alex
226230
Gaynor.
227231

228-
- In some cases, with a source file missing a final newline, coverage would
232+
- In some cases, with a source file missing a final newline, coverage.py would
229233
count statements incorrectly. This is now fixed, closing `issue 293`_.
230234

231235
- The status.dat file that HTML reports use to avoid re-creating files that
@@ -317,9 +321,9 @@ Version 3.7 --- 6 October 2013
317321
- Running code with ``coverage run -m`` now behaves more like Python does,
318322
setting sys.path properly, which fixes `issue 207`_ and `issue 242`_.
319323

320-
- Coverage can now run .pyc files directly, closing `issue 264`_.
324+
- Coverage.py can now run .pyc files directly, closing `issue 264`_.
321325

322-
- Coverage properly supports .pyw files, fixing `issue 261`_.
326+
- Coverage.py properly supports .pyw files, fixing `issue 261`_.
323327

324328
- Omitting files within a tree specified with the ``source`` option would
325329
cause them to be incorrectly marked as unexecuted, as described in
@@ -335,9 +339,10 @@ Version 3.7 --- 6 October 2013
335339
- Trying to create an XML report with no files to report on, would cause a
336340
ZeroDivideError, but no longer does, fixing `issue 250`_.
337341

338-
- When running a threaded program under the Python tracer, coverage no longer
339-
issues a spurious warning about the trace function changing: "Trace function
340-
changed, measurement is likely wrong: None." This fixes `issue 164`_.
342+
- When running a threaded program under the Python tracer, coverage.py no
343+
longer issues a spurious warning about the trace function changing: "Trace
344+
function changed, measurement is likely wrong: None." This fixes `issue
345+
164`_.
341346

342347
- Static files necessary for HTML reports are found in system-installed places,
343348
to ease OS-level packaging of coverage.py. Closes `issue 259`_.
@@ -470,8 +475,9 @@ Version 3.6b1 --- 28 November 2012
470475

471476
- Jython files now work with the ``--source`` option, fixing `issue 100`_.
472477

473-
- Running coverage under a debugger is unlikely to work, but it shouldn't fail
474-
with "TypeError: 'NoneType' object is not iterable". Fixes `issue 201`_.
478+
- Running coverage.py under a debugger is unlikely to work, but it shouldn't
479+
fail with "TypeError: 'NoneType' object is not iterable". Fixes `issue
480+
201`_.
475481

476482
- On some Linux distributions, when installed with the OS package manager,
477483
coverage.py would report its own code as part of the results. Now it won't,
@@ -553,7 +559,6 @@ Version 3.5.3 --- 29 September 2012
553559
.. _tox: http://tox.readthedocs.org/
554560

555561

556-
557562
Version 3.5.2 --- 4 May 2012
558563
----------------------------
559564

@@ -615,10 +620,10 @@ Version 3.5.1 --- 23 September 2011
615620
Version 3.5.1b1 --- 28 August 2011
616621
----------------------------------
617622

618-
- When combining data files from parallel runs, you can now instruct coverage
619-
about which directories are equivalent on different machines. A ``[paths]``
620-
section in the configuration file lists paths that are to be considered
621-
equivalent. Finishes `issue 17`_.
623+
- When combining data files from parallel runs, you can now instruct
624+
coverage.py about which directories are equivalent on different machines. A
625+
``[paths]`` section in the configuration file lists paths that are to be
626+
considered equivalent. Finishes `issue 17`_.
622627

623628
- for-else constructs are understood better, and don't cause erroneous partial
624629
branch warnings. Fixes `issue 122`_.
@@ -640,7 +645,7 @@ Version 3.5.1b1 --- 28 August 2011
640645

641646
- In order to help the core developers measure the test coverage of the
642647
standard library, Brandon Rhodes devised an aggressive hack to trick Python
643-
into running some coverage code before anything else in the process.
648+
into running some coverage.py code before anything else in the process.
644649
See the coverage/fullcoverage directory if you are interested.
645650

646651
.. _issue 17: http://bitbucket.org/ned/coveragepy/issue/17/support-combining-coverage-data-from
@@ -828,7 +833,7 @@ Version 3.4b1 --- 21 August 2010
828833
and parent processes. Use ``coverage run -p`` to get two data files that can
829834
be combined with ``coverage combine``. Fixes `issue 56`_.
830835

831-
- Coverage is now runnable as a module: ``python -m coverage``. Thanks,
836+
- Coverage.py is now runnable as a module: ``python -m coverage``. Thanks,
832837
Brett Cannon.
833838

834839
- When measuring code running in a virtualenv, most of the system library was
@@ -1049,8 +1054,8 @@ Version 3.0.1 --- 7 July 2009
10491054
raised. This is now fixed.
10501055

10511056
- The coverage.py code itself will now not be measured by coverage.py, and no
1052-
coverage modules will be mentioned in the nose --with-cover plug-in. Fixed
1053-
`issue 8`_.
1057+
coverage.py modules will be mentioned in the nose --with-cover plug-in.
1058+
Fixed `issue 8`_.
10541059

10551060
- When running source files, coverage.py now opens them in universal newline
10561061
mode just like Python does. This lets it run Windows files on Mac, for
@@ -1129,10 +1134,10 @@ Version 3.0b1 --- 7 March 2009
11291134

11301135
Major overhaul.
11311136

1132-
- Coverage is now a package rather than a module. Functionality has been split
1133-
into classes.
1137+
- Coverage.py is now a package rather than a module. Functionality has been
1138+
split into classes.
11341139

1135-
- The trace function is implemented in C for speed. Coverage runs are now
1140+
- The trace function is implemented in C for speed. Coverage.py runs are now
11361141
much faster. Thanks to David Christian for productive micro-sprints and
11371142
other encouragement.
11381143

@@ -1144,7 +1149,7 @@ Major overhaul.
11441149

11451150
- The singleton coverage object is only created if the module-level functions
11461151
are used. This maintains the old interface while allowing better
1147-
programmatic use of Coverage.
1152+
programmatic use of Coverage.py.
11481153

11491154
- The minimum supported Python version is 2.3.
11501155

@@ -1242,7 +1247,7 @@ Version 2.5 --- 4 December 2005
12421247
- Add a file argument to report so that reports can be captured to a different
12431248
destination.
12441249

1245-
- coverage.py can now measure itself.
1250+
- Coverage.py can now measure itself.
12461251

12471252
- Adapted Greg Rogers' patch for using relative file names, and sorting and
12481253
omitting files to report on.

TODO.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Coverage TODO
1+
Coverage.py TODO
22

33
Key:
44
* Heading
@@ -126,7 +126,7 @@ x Tricky swapping of collector like figleaf, pycov, et al. (Don't need to do
126126
3: c = 3
127127
if the coverage data shows 1,2,3, it was if-then. if it's 1,3, then the
128128
missing else was executed.
129-
- API for getting coverage data.
129+
+ API for getting coverage data.
130130
- Instruction tracing instead of line tracing.
131131
- Path tracing (how does this even work?)
132132
- Count execution of lines
@@ -143,7 +143,7 @@ x Tricky swapping of collector like figleaf, pycov, et al. (Don't need to do
143143
directory.
144144
- Why can't a morf also be a string, the name of a module?
145145
- ignore by module as well as file?
146-
+ Use a .coveragerc file to control Coverage without the programmatic API.
146+
+ Use a .coveragerc file to control coverage.py without the programmatic API.
147147
- Add a --data switch to explicitly control the data file on the command line.
148148
x Why can't you specify execute (-x) and report (-r) in the same invocation?
149149
Maybe just because -x needs the rest of the command line?
@@ -156,7 +156,7 @@ x Why can't you specify execute (-x) and report (-r) in the same invocation?
156156
class definitions, etc, when coverage is started after the class is defined.
157157
- Different categories of exclude pragma? So you can enable and disable them
158158
from the command line, to reconsider exclusions.
159-
+ Reporting on files never touched by coverage (package completeness)
159+
+ Reporting on files never touched by coverage.py (package completeness)
160160
- A setup.py command? http://jeetworks.org/node/50
161161
- Deltas: indicate the change in coverage percentage from the last run.
162162
+ Show lines missing rather than lines run in the reporting, since that's what
@@ -177,7 +177,7 @@ x Why can't you specify execute (-x) and report (-r) in the same invocation?
177177
+ Clickable column headers on the index page.
178178
+ Syntax coloring in HTML report.
179179
+ Dynamic effects in HTML report.
180-
+ Footer in reports pointing to coverage home page.
180+
+ Footer in reports pointing to coverage.py home page.
181181
+ Baseline grid for linenumber font.
182182
+ Separate out css and HTML.
183183
+ Does it work right with utf-8 source files? http://www.python.org/dev/peps/pep-0263/
@@ -196,10 +196,10 @@ x Why can't you specify execute (-x) and report (-r) in the same invocation?
196196
- ignore (files not to collect)
197197
- exclude (lines not to report as missed)
198198
- omit (files not to report)
199-
- Changes from coverage 2.x:
199+
- Changes from coverage.py 2.x:
200200
- Bare "except:" lines now count as executable code.
201201
- Double function decorators: all decorator lines count as executable code.
202-
- Document the .coverage file format.
202+
x Document the .coverage file format.
203203
+ HTML reporting.
204204
- Much more detail about what's in the report.
205205
- References between pages are off:
@@ -220,8 +220,8 @@ x Why can't you specify execute (-x) and report (-r) in the same invocation?
220220

221221
* Installation
222222

223-
x How will Coverage package install over coverage.py module?
224-
x pip can't install it: it reads the coverage html page, and finds the kit link,
223+
x How will coverage.py package install over coverage.py module?
224+
x pip can't install it: it reads the coverage.py html page, and finds the kit link,
225225
but then can't handle the root-relative link.
226226

227227

@@ -263,13 +263,13 @@ x pip can't install it: it reads the coverage html page, and finds the kit link,
263263
+ Switch to a real test runner, like nose.
264264
+ Test both the C trace function and the Python trace function.
265265
+ parser.py has no direct tests.
266-
- Tests about the .coverage file.
266+
+ Tests about the .coverage file.
267267
+ Tests about the --long-form of arguments.
268268
+ Tests about overriding the .coverage filename.
269269
- Tests about parallel mode.
270270
+ Tests about assigning a multi-line string.
271271
- Tests about tricky docstrings.
272-
+ Coverage test Coverage!
272+
+ Coverage test coverage.py!
273273
- Tests that tracing stops after calling stop()
274274
- More intensive thread testing.
275275
x Tests about the "import __main__" in cmdline.py

coverage/cmdline.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Command-line support for Coverage."""
1+
"""Command-line support for coverage.py."""
22

33
import glob
44
import optparse
@@ -119,7 +119,7 @@ class Opts(object):
119119

120120

121121
class CoverageOptionParser(optparse.OptionParser, object):
122-
"""Base OptionParser for coverage.
122+
"""Base OptionParser for coverage.py.
123123
124124
Problems don't exit the program.
125125
Defaults are initialized for all options.
@@ -202,7 +202,7 @@ class CmdOptionParser(CoverageOptionParser):
202202
def __init__(self, action, options=None, defaults=None, usage=None,
203203
description=None
204204
):
205-
"""Create an OptionParser for a coverage command.
205+
"""Create an OptionParser for a coverage.py command.
206206
207207
`action` is the slug to put into `options.action`.
208208
`options` is a list of Option's for the command.
@@ -340,7 +340,7 @@ def __eq__(self, other):
340340

341341

342342
class CoverageScript(object):
343-
"""The command-line interface to Coverage."""
343+
"""The command-line interface to coverage.py."""
344344

345345
def __init__(self, _covpkg=None, _run_python_file=None,
346346
_run_python_module=None, _help_fn=None):
@@ -360,7 +360,7 @@ def __init__(self, _covpkg=None, _run_python_file=None,
360360
self.coverage = None
361361

362362
def command_line(self, argv):
363-
"""The bulk of the command line interface to Coverage.
363+
"""The bulk of the command line interface to coverage.py.
364364
365365
`argv` is the argument list to process.
366366
@@ -613,7 +613,7 @@ def unshell_list(s):
613613
if not s:
614614
return None
615615
if env.WINDOWS:
616-
# When running coverage as coverage.exe, some of the behavior
616+
# When running coverage.py as coverage.exe, some of the behavior
617617
# of the shell is emulated: wildcards are expanded into a list of
618618
# filenames. So you have to single-quote patterns on the command
619619
# line, but (not) helpfully, the single quotes are included in the
@@ -669,7 +669,7 @@ def unglob_args(args):
669669

670670

671671
def main(argv=None):
672-
"""The main entry point to Coverage.
672+
"""The main entry point to coverage.py.
673673
674674
This is installed as the script entry point.
675675

coverage/control.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -293,13 +293,13 @@ def _init(self):
293293
structseq_file = structseq_new.__code__.co_filename
294294
self.pylib_dirs.add(self._canonical_dir(structseq_file))
295295

296-
# To avoid tracing the coverage code itself, we skip anything located
297-
# where we are.
296+
# To avoid tracing the coverage.py code itself, we skip anything
297+
# located where we are.
298298
self.cover_dirs = [self._canonical_dir(__file__)]
299299
if env.TESTING:
300300
# When testing, we use PyContracts, which should be considered
301-
# part of coverage, and it uses six. Exclude those directories just
302-
# as we exclude ourselves.
301+
# part of coverage.py, and it uses six. Exclude those directories
302+
# just as we exclude ourselves.
303303
import contracts, six
304304
for mod in [contracts, six]:
305305
self.cover_dirs.append(self._canonical_dir(mod))
@@ -549,8 +549,8 @@ def _check_include_omit_etc_internal(self, filename, frame):
549549
if self.pylib_match and self.pylib_match.match(filename):
550550
return "is in the stdlib"
551551

552-
# We exclude the coverage code itself, since a little of it will be
553-
# measured otherwise.
552+
# We exclude the coverage.py code itself, since a little of it
553+
# will be measured otherwise.
554554
if self.cover_match and self.cover_match.match(filename):
555555
return "is part of coverage.py"
556556

@@ -1114,15 +1114,15 @@ def process_startup():
11141114
# because some virtualenv configurations make the same directory visible
11151115
# twice in sys.path. This means that the .pth file will be found twice,
11161116
# and executed twice, executing this function twice. We set a global
1117-
# flag (an attribute on this function) to indicate that coverage has
1117+
# flag (an attribute on this function) to indicate that coverage.py has
11181118
# already been started, so we can avoid doing it twice.
11191119
#
11201120
# https://bitbucket.org/ned/coveragepy/issue/340/keyerror-subpy has more
11211121
# details.
11221122

11231123
if hasattr(process_startup, "done"):
11241124
# We've annotated this function before, so we must have already
1125-
# started coverage in this process. Nothing to do.
1125+
# started coverage.py in this process. Nothing to do.
11261126
return
11271127

11281128
process_startup.done = True

coverage/fullcoverage/encodings.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
If the directory that holds this file is placed first in the PYTHONPATH when
77
using "coverage" to run Python's tests, then this file will become the very
88
first module imported by the internals of Python 3. It installs a
9-
coverage-compatible trace function that can watch Standard Library modules
9+
coverage.py-compatible trace function that can watch Standard Library modules
1010
execute from the very earliest stages of Python's own boot process. This fixes
11-
a problem with coverage - that it starts too late to trace the coverage of many
12-
of the most fundamental modules in the Standard Library.
11+
a problem with coverage.py - that it starts too late to trace the coverage of
12+
many of the most fundamental modules in the Standard Library.
1313
1414
"""
1515

doc/api.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ The CoverageData class
4949
:special-members: __init__
5050

5151

52-
Starting coverage automatically
53-
-------------------------------
52+
Starting coverage.py automatically
53+
----------------------------------
5454

5555
This function is used to start coverage measurement automatically when Python
5656
starts. See :ref:`subprocess` for details.

0 commit comments

Comments
 (0)