ned / coverage.py (http://nedbatchelder.com/code/coverage)

Coverage.py measures Python code coverage, typically during test execution. Kits are at PyPI: http://pypi.python.org/pypi/coverage/.

Clone this repository (size: 2.3 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ned/coveragepy/
commit 691: 6cf48b2d18ad
parent 690: a78d55140d4f
branch: default
Update a few copyrights to 2010.
Ned Batchelder / ned
2 months ago

Changed (Δ43 bytes):

raw changeset »

coverage/__init__.py (1 lines added, 1 lines removed)

doc/conf.py (1 lines added, 1 lines removed)

test/test_coverage.py (0 lines added, 1 lines removed)

Up to file-list coverage/__init__.py:

@@ -55,7 +55,7 @@ annotate = _singleton_method('annotate'
55
55
# COPYRIGHT AND LICENSE
56
56
#
57
57
# Copyright 2001 Gareth Rees.  All rights reserved.
58
# Copyright 2004-2009 Ned Batchelder.  All rights reserved.
58
# Copyright 2004-2010 Ned Batchelder.  All rights reserved.
59
59
#
60
60
# Redistribution and use in source and binary forms, with or without
61
61
# modification, are permitted provided that the following conditions are

Up to file-list doc/conf.py:

@@ -40,7 +40,7 @@ master_doc = 'index'
40
40
41
41
# General information about the project.
42
42
project = u'coverage.py'
43
copyright = u'2009, Ned Batchelder'
43
copyright = u'2009-2010, Ned Batchelder'
44
44
45
45
# The version info for the project you're documenting, acts as replacement for
46
46
# |version| and |release|, also used in various other places throughout the

Up to file-list test/test_coverage.py:

1
1
"""Tests for Coverage."""
2
# Copyright 2004-2009, Ned Batchelder
3
2
# http://nedbatchelder.com/code/coverage
4
3
5
4
import os, sys, unittest