Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor: use sets to collect data | Ned Batchelder | 2021-08-15 | 1 | -1/+1 |
| | | | | | | | Coverage.py predates sets as a built-in data structure, so the file data collection has long been dicts with None as the values. Sets are available to us now (since Python 2.4 in 2004, which coverage.py dropped support for in 2014!), we use sets. | ||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Simplify stack management in CTracer | Ned Batchelder | 2017-03-03 | 1 | -6/+4 |
| | | | | | | | "file_data" used to be borrowed from data, but that was confusing. Now it's owned. We used to have a struct member which was a copy of the current stack entry. That just made it harder to reason about reference counting. Now we have a pointer to the entry on the stack. | ||||
* | Make a BOOL type for the C code. | Ned Batchelder | 2016-01-30 | 1 | -1/+1 |
| | |||||
* | WIP: record contexts for who tests what | Ned Batchelder | 2015-11-14 | 1 | -0/+2 |
| | |||||
* | Split tracer.c into smaller files | Ned Batchelder | 2015-08-01 | 1 | -0/+45 |