summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* | | A bit of refactoring, inching slowly toward nicer CodeUnitsNed Batchelder2014-05-182-18/+22
| | |
* | | Avoid a bunch of deprecated functions.Ned Batchelder2014-05-172-7/+35
| | |
* | | Remove an unneeded backward function, and move BUILTINS into backwardNed Batchelder2014-05-172-16/+10
| | |
* | | Refactor execfile to avoid imp to avoid deprecation warningsNed Batchelder2014-05-162-41/+104
| |/ |/|
* | Latest code form 500linesNed Batchelder2014-05-091-50/+85
| |
* | Refactoring, asymptotically approaching multi-languageNed Batchelder2014-05-044-30/+19
| |
* | Small cleanupsNed Batchelder2014-05-033-6/+6
| |
* | Clean up Stan Hu's pull request, and add him to changes and authorsNed Batchelder2014-05-021-5/+3
| |
* | Merged in stanhu/coverage.py (pull request #32)Ned Batchelder2014-05-021-2/+16
|\ \ | | | | | | | | | Issue #94: Include the sources element
| * | Issue #94: Include the sources elementStan Hu2014-02-031-2/+16
| |/
* | Polished-up code from 500linesNed Batchelder2014-04-261-29/+39
| |
* | More refactoring of hacked Mako supportNed Batchelder2014-04-185-111/+105
| |
* | Fix the Mako regexesNed Batchelder2014-03-081-2/+2
| |
* | Hacked-in Mako support.Ned Batchelder2014-03-085-7/+124
| |
* | Start on splitting into different parsers for different languagesNed Batchelder2014-03-062-8/+32
| |
* | Comment spelling and todo bookkeeping.Ned Batchelder2014-03-061-1/+1
| |
* | Clean up the comment on the xmlreport fixChris Rose2014-02-191-5/+4
| |
* | Resolve #285 - precreate the XML report's output directory if it doesChris Rose2014-02-031-0/+8
|/ | | | not exist yet.
* Peter Portante's coroutine support, but it doesn't work yet.Ned Batchelder2014-01-094-4/+46
|
* No need for paren-less exec any more.Ned Batchelder2013-12-142-21/+4
|
* A few last listcomp -> genexp upgrades.Ned Batchelder2013-12-141-3/+3
|
* Merged 4.0 to defaultNed Batchelder2013-12-1318-216/+116
|\
| * enumerate has a start parameter!Ned Batchelder2013-10-232-4/+3
| | | | | | | | | | --HG-- branch : 4.0
| * Except clause can now use 'as', no need for lots of sys.exc_infoNed Batchelder2013-10-205-20/+10
| | | | | | | | | | --HG-- branch : 4.0
| * try/except/finally is ok now.Ned Batchelder2013-10-203-45/+42
| | | | | | | | | | --HG-- branch : 4.0
| * with statements: no more finally closeNed Batchelder2013-10-204-41/+11
| | | | | | | | | | --HG-- branch : 4.0
| * My own decorators can be decoratorsNed Batchelder2013-10-201-2/+2
| | | | | | | | | | --HG-- branch : 4.0
| * Now I can use collections.defaultdictNed Batchelder2013-10-202-7/+4
| | | | | | | | | | --HG-- branch : 4.0
| * Generator expressons are ok now.Ned Batchelder2013-10-199-23/+23
| | | | | | | | | | --HG-- branch : 4.0
| * Now I can use decorators.Ned Batchelder2013-10-192-12/+12
| | | | | | | | | | --HG-- branch : 4.0
| * Now I can use tuples with startswith and endswith.Ned Batchelder2013-10-193-3/+3
| | | | | | | | | | --HG-- branch : 4.0
| * Get rid of our backward implementation of set, sorted, reversed, and rpartition.Ned Batchelder2013-10-198-50/+6
| | | | | | | | | | --HG-- branch : 4.0
| * We only run on 2.6, 2.7, 3.2, 3.3 now.Ned Batchelder2013-10-191-7/+2
| | | | | | | | | | --HG-- branch : 4.0
| * Start on 4.0Ned Batchelder2013-10-191-1/+1
| | | | | | | | | | --HG-- branch : 4.0
* | Python 2.3, my old nemesis!Ned Batchelder2013-10-271-1/+3
| |
* | More templite fiddling: use locals instead of ctx[] each time.Ned Batchelder2013-10-271-11/+41
| |
* | Turns out we were spinning on Nones a lot in the Hasher.Ned Batchelder2013-10-271-1/+3
| |
* | ByteCodes.__iter__ is expensive, do it once instead of twice.Ned Batchelder2013-10-271-2/+3
| |
* | No point computing branch info if we aren't doing branch coverage.Ned Batchelder2013-10-271-1/+2
| |
* | Cache generate_tokens to speed HTML reports.Ned Batchelder2013-10-262-3/+33
| |
* | Micro optimizations.Ned Batchelder2013-10-261-3/+3
| |
* | Templite now compiles to Python code for speed.Ned Batchelder2013-10-261-92/+102
| |
* | Use sets as much as possible to speed HTML reports. Seems to be a 10% speedup.Ned Batchelder2013-10-236-16/+27
| |
* | Simple timing of commands.Ned Batchelder2013-10-231-1/+5
|/
* Fix the mechanism for HTML to find OS-installed resources.Ned Batchelder2013-10-101-11/+19
|
* In case we need a 3.7.1Ned Batchelder2013-10-091-1/+1
|
* Forgot to change the reference to jquery to match the new filenameNed Batchelder2013-10-062-2/+2
|
* We don't need no stinkin' beta.Ned Batchelder2013-10-061-1/+1
|
* Go to 3.7Ned Batchelder2013-10-051-1/+1
|
* Make everything work on py2.3 again (for the last time).Ned Batchelder2013-10-051-1/+3
|