Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Sqlite3 info in 'coverage debug sys' | Ned Batchelder | 2019-10-08 | 2 | -1/+13 | |
| | ||||||
* | Bump version | Ned Batchelder | 2019-10-08 | 1 | -1/+1 | |
| | ||||||
* | Context-switching plugins should be listed in debug output | Ned Batchelder | 2019-10-06 | 1 | -0/+1 | |
| | ||||||
* | Slowly making progress on sqldata docstrings | Ned Batchelder | 2019-10-06 | 1 | -0/+7 | |
| | ||||||
* | Add some needed details to the Coverage docstrings | Ned Batchelder | 2019-10-06 | 1 | -6/+21 | |
| | ||||||
* | Quiet pylint | Ned Batchelder | 2019-10-06 | 1 | -3/+5 | |
| | ||||||
* | Context patterns are regexes, not globs | Ned Batchelder | 2019-10-02 | 2 | -7/+29 | |
| | ||||||
* | Setting query context has to be done with a separate method call | Ned Batchelder | 2019-10-02 | 1 | -34/+24 | |
| | ||||||
* | Clearer logic | Ned Batchelder | 2019-10-02 | 1 | -2/+2 | |
| | ||||||
* | Bump version | Ned Batchelder | 2019-09-21 | 1 | -1/+1 | |
| | ||||||
* | Exit arcs have to be corrected to first lines | Ned Batchelder | 2019-09-21 | 1 | -1/+5 | |
| | | | | | | | | | | We've long remapped line numbers to the first line of a multi-line statement. But exit line numbers (negative numbers) were not remapped. This meant we were needlessly chasing weirdnesses in implementations. But the actual results of running coverage always remapped results to the first line, so there's no point in tracking the unmapped line numbers in our tests. | |||||
* | Remove unused attribute | Ned Batchelder | 2019-09-20 | 1 | -1/+0 | |
| | ||||||
* | Python tracer supports dynamic contexts. #846 | Ned Batchelder | 2019-09-15 | 1 | -4/+34 | |
| | ||||||
* | Polish up substitute_variables based on a lightning talk | Ned Batchelder | 2019-09-14 | 2 | -26/+26 | |
| | ||||||
* | Correct some function names and docstrings. #843 | Ned Batchelder | 2019-09-09 | 2 | -10/+14 | |
| | ||||||
* | Document the module-level stuff. #837 | Ned Batchelder | 2019-09-09 | 1 | -1/+1 | |
| | ||||||
* | A little more in the db schema docs | Ned Batchelder | 2019-09-09 | 1 | -3/+4 | |
| | ||||||
* | Updating with an empty data is ok | Ned Batchelder | 2019-09-03 | 1 | -16/+24 | |
| | | | | | With no arc or line data, it used to choose lines arbitrarily, which would fail if an empty data was updating an arc data. | |||||
* | Need to set a sqlite attribute on a real sqlite connection | Ned Batchelder | 2019-09-03 | 1 | -1/+1 | |
| | ||||||
* | --debug=self now goes on a second line for better readability | Ned Batchelder | 2019-09-03 | 1 | -2/+2 | |
| | ||||||
* | Log some indication of the script being executed | Ned Batchelder | 2019-09-02 | 3 | -4/+18 | |
| | ||||||
* | Logging executemany failed if data was a generator | Ned Batchelder | 2019-09-02 | 1 | -0/+1 | |
| | ||||||
* | cwd logging didn't have pid/tid info on it | Ned Batchelder | 2019-09-02 | 1 | -1/+1 | |
| | ||||||
* | Reporting methods shouldn't permanently change the configuration | Ned Batchelder | 2019-09-01 | 2 | -19/+41 | |
| | ||||||
* | No need for format indexes (mostly) | Ned Batchelder | 2019-09-01 | 9 | -31/+31 | |
| | ||||||
* | Log an operation before starting it | Ned Batchelder | 2019-09-01 | 1 | -1/+1 | |
| | ||||||
* | Make callers debug output easier to use as editor launches | Ned Batchelder | 2019-09-01 | 1 | -1/+1 | |
| | ||||||
* | Tweaks to JSON report docs | Ned Batchelder | 2019-08-31 | 1 | -1/+1 | |
| | ||||||
* | Create a JSON report | Matt Bachmann | 2019-08-31 | 7 | -39/+217 | |
| | ||||||
* | debug=plugin didn't handle all plugin methods. #834 | Ned Batchelder | 2019-08-11 | 1 | -0/+14 | |
| | ||||||
* | Improved numbits operations | Ned Batchelder | 2019-08-11 | 2 | -64/+155 | |
| | | | | | | | | | * Better names (merge -> union) * More ops (intersection) * Can be registered for SQLite use * Numbits can be empty Also, line_map is a dumb table name. line_bits is marginally better. | |||||
* | Fix unusual backslash token issue. #822 | Ned Batchelder | 2019-08-10 | 1 | -5/+4 | |
| | ||||||
* | Don't need the schema history in the schema | Ned Batchelder | 2019-08-06 | 1 | -8/+9 | |
| | ||||||
* | Version and timestamp in the meta data | Ned Batchelder | 2019-08-06 | 1 | -2/+10 | |
| | ||||||
* | Meta data stored as key/value | Ned Batchelder | 2019-08-06 | 1 | -14/+22 | |
| | ||||||
* | Pudb is a useful thing to have available when needed | Ned Batchelder | 2019-08-06 | 1 | -1/+1 | |
| | ||||||
* | Foreign keys | Ned Batchelder | 2019-08-06 | 1 | -2/+8 | |
| | ||||||
* | Fix a bug in num_in_numbits. | Ned Batchelder | 2019-08-01 | 1 | -1/+1 | |
| | ||||||
* | Add num_in_numbits | Ned Batchelder | 2019-08-01 | 2 | -2/+18 | |
| | ||||||
* | Add numbits_any_intersection | Ned Batchelder | 2019-07-31 | 1 | -0/+6 | |
| | ||||||
* | A little more discipline for blob converters | Ned Batchelder | 2019-07-31 | 1 | -5/+12 | |
| | ||||||
* | numbits is the new name for the binary line numbers | Ned Batchelder | 2019-07-31 | 1 | -18/+27 | |
| | ||||||
* | Refactor numbits into their own files | Ned Batchelder | 2019-07-31 | 2 | -33/+49 | |
| | ||||||
* | Don't be fooled by a class named test_something. Fixes #829 | Ned Batchelder | 2019-07-26 | 1 | -1/+3 | |
| | ||||||
* | Simplify | Ned Batchelder | 2019-07-26 | 1 | -10/+3 | |
| | ||||||
* | Don't try to delete a file called ':memory:' | Ned Batchelder | 2019-07-20 | 1 | -0/+2 | |
| | ||||||
* | z-compressed dumps and loads | Ned Batchelder | 2019-07-19 | 2 | -12/+25 | |
| | ||||||
* | Bump version | Ned Batchelder | 2019-07-16 | 1 | -1/+1 | |
| | ||||||
* | Bitmaps for line numbers, 10% of the size. | Ned Batchelder | 2019-07-15 | 2 | -32/+99 | |
| | ||||||
* | :memory: support | Ned Batchelder | 2019-07-15 | 1 | -6/+15 | |
| |