Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | also use AST for while constants in python-2.7 #502issue-502-7 | loic | 2016-12-15 | 1 | -5/+6 |
| | | | | | | | | The node.id is set to False, True or None is python-2.7: there is no reason to only check for it with python-3. It is more reliable than using the DEFAULT_PARTIAL_ALWAYS regexps on source lines. close #502 | ||||
* | Fix #496, while-true loop with a continue. | Ned Batchelder | 2016-12-18 | 1 | -1/+1 |
| | |||||
* | More parser code clean-up | Ned Batchelder | 2016-12-18 | 1 | -14/+25 |
| | |||||
* | Clean up #493 fix | Ned Batchelder | 2016-12-18 | 1 | -0/+2 |
| | |||||
* | Merged in dachary/coverage.py/issue-493-2 (pull request #108) | Ned Batchelder | 2016-12-18 | 1 | -14/+52 |
|\ | | | | | | | finally happens before return in a try #493 | ||||
| * | More ast parsing clean-up. | Ned Batchelder | 2016-12-18 | 1 | -8/+19 |
| | | |||||
| * | More doc and cleanup of ast parsing | Ned Batchelder | 2016-12-18 | 1 | -6/+29 |
| | | |||||
| * | Add some to the ArcStart docstring, and remove defaultable arguments | Ned Batchelder | 2016-12-18 | 1 | -5/+9 |
| | | |||||
* | | finally happens before return in a try #493issue-493-2 | loic | 2016-12-18 | 1 | -5/+7 |
|/ | | | | | | | | | | | | | | | | | | In a try block such as: if expr: try: return finally print pass the print happens before the return and cannot be followed by pass. The general case is that when the body/else/handlers in a try block all have return, break etc., the code behind finally: has no arc to the statement following the try block. close #493 | ||||
* | Conditionalize the ast_dump code | Ned Batchelder | 2016-11-22 | 1 | -55/+60 |
| | |||||
* | Downgrading these from TODO | Ned Batchelder | 2016-10-22 | 1 | -6/+6 |
| | |||||
* | Update pylint to 1.5.6 | Ned Batchelder | 2016-06-25 | 1 | -0/+1 |
| | |||||
* | Better descriptions of missing one-line executables. Part of #475 | Ned Batchelder | 2016-03-27 | 1 | -6/+22 |
| | |||||
* | Entry arcs now use the negative first line of the code object instead of -1. | Ned Batchelder | 2016-03-02 | 1 | -6/+6 |
| | |||||
* | Better branch-missed messages for lambdas. | Ned Batchelder | 2016-02-25 | 1 | -2/+5 |
| | |||||
* | Pick off some lint | Ned Batchelder | 2016-02-15 | 1 | -7/+15 |
| | |||||
* | Add missing branch explanations for while-loop | Ned Batchelder | 2016-02-15 | 1 | -4/+6 |
| | |||||
* | Clean up new helper | Ned Batchelder | 2016-02-15 | 1 | -6/+11 |
| | |||||
* | Combine add_arc and add_missing_fragments | Ned Batchelder | 2016-02-15 | 1 | -39/+19 |
| | |||||
* | More missing-branch descriptions | Ned Batchelder | 2016-02-15 | 1 | -11/+19 |
| | |||||
* | Make the arc and fragment collection easier to trace | Ned Batchelder | 2016-02-14 | 1 | -63/+45 |
| | |||||
* | More work on better missing branch descriptions | Ned Batchelder | 2016-02-14 | 1 | -29/+67 |
| | |||||
* | Add missing branch descriptions for handling exceptions | Ned Batchelder | 2016-02-13 | 1 | -2/+3 |
| | |||||
* | Clean up some of the ArcStart causes | Ned Batchelder | 2016-02-13 | 1 | -15/+19 |
| | |||||
* | More work on the better missed-branch messages | Ned Batchelder | 2016-02-13 | 1 | -16/+22 |
| | |||||
* | missing_arc_description is better than arc_destination_description. One test ↵ | Ned Batchelder | 2016-02-08 | 1 | -21/+32 |
| | | | | broken. | ||||
* | Move AST code together | Ned Batchelder | 2016-02-07 | 1 | -76/+77 |
| | |||||
* | Centralize the no-op-iness of contracts | Ned Batchelder | 2016-02-07 | 1 | -5/+4 |
| | |||||
* | More work to get better descriptions of arc behavior | Ned Batchelder | 2016-02-07 | 1 | -43/+83 |
| | |||||
* | Properly handle {**{'a':1}} literals | Ned Batchelder | 2016-02-07 | 1 | -2/+7 |
| | |||||
* | Different annotations on missed branches. I don't like them yet. | Ned Batchelder | 2016-02-06 | 1 | -31/+60 |
| | |||||
* | Don't track unhandled exception branches | Ned Batchelder | 2016-01-29 | 1 | -17/+0 |
| | |||||
* | How to flag uncaught exception branches | Ned Batchelder | 2016-01-29 | 1 | -0/+5 |
| | |||||
* | Simplify a condition | Ned Batchelder | 2016-01-27 | 1 | -6/+5 |
| | |||||
* | Fix #466: multi-line statements first in decorated functions | Ned Batchelder | 2016-01-18 | 1 | -7/+25 |
| | | | | Also, leave in the SetSpy tracer we've used before to find things like this. | ||||
* | Stop treating yield-from and await as function returns | Ned Batchelder | 2016-01-16 | 1 | -17/+0 |
| | |||||
* | Class docstrings shouldn't be considered executable. Not sure what happened ↵ | Ned Batchelder | 2016-01-11 | 1 | -4/+1 |
| | | | | there... | ||||
* | Clean up the ast analyzer a little | Ned Batchelder | 2016-01-10 | 1 | -11/+23 |
| | |||||
* | Properly handle break/continue/raise/return from except/else clauses | Ned Batchelder | 2016-01-10 | 1 | -20/+35 |
| | |||||
* | Class docstrings are executable. | Ned Batchelder | 2016-01-10 | 1 | -8/+12 |
| | |||||
* | Properly skip lines that are optimized away | Ned Batchelder | 2016-01-09 | 1 | -9/+12 |
| | |||||
* | Use all statements instead of specialized class and funcs sets in ast analysis | Ned Batchelder | 2016-01-09 | 1 | -18/+12 |
| | |||||
* | Add some docstrings, etc | Ned Batchelder | 2016-01-09 | 1 | -12/+35 |
| | |||||
* | Add a test of partial lambdas | Ned Batchelder | 2016-01-09 | 1 | -1/+0 |
| | |||||
* | Put the lambda tests together | Ned Batchelder | 2016-01-08 | 1 | -0/+1 |
| | |||||
* | Add tests of multiline lambdas, though i don't quite understand the line ↵ | Ned Batchelder | 2016-01-07 | 1 | -3/+2 |
| | | | | numbers involved | ||||
* | Clean up small stuff | Ned Batchelder | 2016-01-07 | 1 | -0/+9 |
| | |||||
* | Bytecode not byte code | Ned Batchelder | 2016-01-07 | 1 | -2/+2 |
| | |||||
* | Remove the old bytecode-based branch analyzer | Ned Batchelder | 2016-01-06 | 1 | -359/+2 |
| | |||||
* | Name the dispatched-to methods more unusually | Ned Batchelder | 2016-01-06 | 1 | -34/+34 |
| |