summaryrefslogtreecommitdiff
path: root/__main__.py
Commit message (Collapse)AuthorAgeFilesLines
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* Drop support for EOL 2.5, 2.6 and 3.3Hugo2018-06-191-9/+2
|
* Run lint with tox. I wish it ran faster...Ned Batchelder2017-01-121-1/+2
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-0/+3
|
* Push some characters around.Ned Batchelder2011-04-161-6/+5
|
* Allow coverage.py to be executed by pointing Python at a repository'sBrett Cannon2011-02-261-0/+16
directory. Since Python 2.6 one can specify a __main__.py in a directory to tell Python what to do if it is pointed at simply a directory. For instance, assuming one has a clone of coverage.py sitting at ../coveragepy, this patch allows for:: python ../coveragepy run ... This is extremely handy if you want to use coverage.py straight from a clone without adding the clone's directory to sys.path (which can be an issue at least in the stdlib as that will pick up 'test' as a package, masking the stdlib's own 'test' package).