| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Don't issue spurious warnings about the trace function changing. Fixes #164 | Ned Batchelder | 2013-03-10 | 1 | -3/+7 | 
| *  | A more convenient way to check on the trace function. | Ned Batchelder | 2013-01-11 | 1 | -3/+4 | 
| *  | Clean up debugging stuff | Ned Batchelder | 2012-12-21 | 1 | -4/+5 | 
| *  | Debugging to understand why 'trace function changed' appears. | Ned Batchelder | 2012-12-20 | 1 | -2/+4 | 
| *  | Silence the last of the pylint warnings. | Ned Batchelder | 2012-11-20 | 1 | -1/+1 | 
| *  | Fix #201: wrong default for traces0 being missing. | Ned Batchelder | 2012-10-13 | 1 | -1/+1 | 
| *  | If fullcoverage is run with the wrong tracer, make it apparent. | Ned Batchelder | 2012-08-30 | 1 | -1/+6 | 
| *  | Undo Brett's change to the fullcoverage feature: it should only be used with ... | Ned Batchelder | 2012-08-30 | 1 | -1/+2 | 
| *  | Make fullcoverage at least run (doesn't work though). | Brett Cannon | 2012-08-17 | 1 | -7/+6 | 
| *  | If the C tracer is missing during testing, make the problem immediately appar... | Ned Batchelder | 2012-07-07 | 1 | -1/+12 | 
| *  | Change the name of the C tracer from Tracer to CTracer, as it always should h... | Ned Batchelder | 2011-09-03 | 1 | -3/+3 | 
| *  | Control the test better; don't use os when cleaning up the path | Ned Batchelder | 2011-08-08 | 1 | -1/+1 | 
| *  | A fullcoverage tracer that works.  Events are stashed, then replayed when cov... | Ned Batchelder | 2011-08-08 | 1 | -4/+3 | 
| *  | An enormous hack to try to get stdlib measurement from the very beginning of ... | Ned Batchelder | 2011-08-07 | 1 | -1/+18 | 
| *  | Detect when our trace function is yanked out from under us, and warn the user... | Ned Batchelder | 2010-11-06 | 1 | -1/+11 | 
| *  | Use 2-and-3-friendly syntax in the debugging prints in the trace function. | Ned Batchelder | 2010-10-13 | 1 | -5/+8 | 
| *  | Clean up lint. | Ned Batchelder | 2010-08-26 | 1 | -1/+1 | 
| *  | The thread-startup dance caused Thread.run() to not be measured.  This fixes ... | Ned Batchelder | 2010-08-26 | 1 | -5/+15 | 
| *  | Yikes: when using the Python tracing function, we haven't been caching the re... | Ned Batchelder | 2010-06-13 | 1 | -1/+4 | 
| *  | Properly record multiple exits separately.  Fixes #62. | Ned Batchelder | 2010-04-27 | 1 | -2/+8 | 
| *  | A way to start coverage when Python starts, to help with measuring coverage i... | Ned Batchelder | 2009-12-23 | 1 | -1/+1 | 
| *  | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -21/+22 | 
| *  | Fix some self-measurement problems.  Now coverage_coverage.py works again (ha... | Ned Batchelder | 2009-11-29 | 1 | -0/+5 | 
| *  | Add statistics gathering to help find a problem in the C tracer. | Ned Batchelder | 2009-11-22 | 1 | -2/+11 | 
| *  | Clean up. | Ned Batchelder | 2009-11-08 | 1 | -2/+7 | 
| *  | The C tracer function can do arc tracing also. | Ned Batchelder | 2009-10-24 | 1 | -3/+2 | 
| *  | Everything should derive from object. | Ned Batchelder | 2009-10-24 | 1 | -2/+2 | 
| *  | Tidy up long lines | Ned Batchelder | 2009-10-24 | 1 | -1/+1 | 
| *  | Another line of logging. | Ned Batchelder | 2009-10-23 | 1 | -0/+1 | 
| *  | More exception flow testing.  This stuff is kind of involved... | Ned Batchelder | 2009-10-20 | 1 | -0/+2 | 
| *  | Start unit testing the arc measurement.  In arcs, -1 means enter or exit. | Ned Batchelder | 2009-10-16 | 1 | -3/+3 | 
| *  | Write the arcs to the data file. | Ned Batchelder | 2009-10-12 | 1 | -1/+1 | 
| *  | Report lines properly when measuring branches; Use None for the placeholder v... | Ned Batchelder | 2009-10-12 | 1 | -8/+24 | 
| *  | Reduce the amount of data translation by having the tracers record data in a ... | Ned Batchelder | 2009-10-11 | 1 | -18/+23 | 
| *  | One way to collect arc information.. | Ned Batchelder | 2009-10-11 | 1 | -95/+30 | 
| *  | Properly separate the line data and the arc data. | Ned Batchelder | 2009-10-10 | 1 | -14/+19 | 
| *  | Continued hacking on branch coverage. | Ned Batchelder | 2009-10-10 | 1 | -1/+83 | 
| *  | Basic plumbing for a --branch option. | Ned Batchelder | 2009-10-07 | 1 | -2/+8 | 
| *  | Added a 'coverage debug' command to get internal information for diagnosing p... | Ned Batchelder | 2009-09-27 | 1 | -0/+4 | 
| *  | Fix a problem with DecoratorTools fiddling with the trace function and screwi... | Ned Batchelder | 2009-08-09 | 1 | -65/+81 | 
| *  | Narrow the amount of code in a coverage start/stop window in a test so that t... | Ned Batchelder | 2009-07-12 | 1 | -0/+2 | 
| *  | A better way to fix the missing-return-after-exception problem in the trace f... | Ned Batchelder | 2009-07-06 | 1 | -48/+25 | 
| *  | Fix Python 2.3's exception tracing by always using a dumbed-down Python trace... | Ned Batchelder | 2009-07-04 | 1 | -18/+52 | 
| *  | .pyc files can be moved, so use __file__ to correctly find the source file. | Ned Batchelder | 2009-05-05 | 1 | -1/+1 | 
| *  | Lint clean-ups. | Ned Batchelder | 2009-05-05 | 1 | -6/+6 | 
| *  | Keeping a stack of Collectors makes it possible for Coverage to measure itsel... | Ned Batchelder | 2009-05-03 | 1 | -1/+29 | 
| *  | Clarify what Collector.start and .stop do to other threads. | Ned Batchelder | 2009-05-02 | 1 | -7/+15 | 
| *  | Weeding in collector.py | Ned Batchelder | 2009-05-02 | 1 | -8/+31 | 
| *  | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -1/+1 | 
| *  | Not sure exactly why, but having a bogus attribute reference in the trace fun... | Ned Batchelder | 2009-03-14 | 1 | -1/+1 |