summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
Commit message (Expand)AuthorAgeFilesLines
* Properly handle break/continue/raise/return from except/else clausesNed Batchelder2016-01-101-0/+86
* What's a decoractor?Ned Batchelder2016-01-101-1/+1
* Properly skip lines that are optimized awayNed Batchelder2016-01-091-1/+1
* Add a test of partial lambdasNed Batchelder2016-01-091-1/+22
* Put the lambda tests togetherNed Batchelder2016-01-081-10/+10
* Add tests of multiline lambdas, though i don't quite understand the line numb...Ned Batchelder2016-01-071-1/+28
* Clean up small stuffNed Batchelder2016-01-071-0/+2
* A test that I'll fix soonNed Batchelder2016-01-071-0/+19
* Bytecode not byte codeNed Batchelder2016-01-071-1/+3
* Test continue/finallyNed Batchelder2016-01-061-0/+20
* Add some tests for uncovered casesNed Batchelder2016-01-061-0/+7
* Tweak the conditional for the start-point of dictcompsNed Batchelder2016-01-051-2/+2
* Support while-elseNed Batchelder2016-01-051-0/+16
* Support comprehensions betterNed Batchelder2016-01-041-0/+48
* Fix arcs for function and class decoratorsNed Batchelder2016-01-031-0/+47
* No reason to skip this testNed Batchelder2016-01-021-2/+1
* Remove unused importsNed Batchelder2016-01-021-4/+0
* Merge in the default branchNed Batchelder2016-01-021-9/+9
|\
| * Change if-0 skips to real skips in the testsNed Batchelder2015-12-251-9/+9
* | Support returning through a finallyNed Batchelder2016-01-021-0/+15
* | Better exception support, include except-except arcs, and except-elseNed Batchelder2016-01-021-7/+12
* | Handle yield-from and await. All tests passNed Batchelder2016-01-021-9/+11
* | Remove some async tests we aren't going to useNed Batchelder2016-01-011-97/+3
* | Clean up after making arcz_missing and arcz_unpredicted default to empty.Ned Batchelder2016-01-011-42/+38
* | check_coverage now assumes empty missing and unpredicted, and uses branch alwaysNed Batchelder2016-01-011-2/+20
* | Remove temporary ast_differsNed Batchelder2016-01-011-4/+0
* | test_arcs now passes for all Python versionsNed Batchelder2016-01-011-1/+5
* | All test_arcs.py tests pass on py27 and py35Ned Batchelder2016-01-011-5/+20
* | Support 'with'Ned Batchelder2016-01-011-1/+1
* | Support classdef and some async keywordsNed Batchelder2015-12-311-3/+5
* | Support exception arcs on py2, where the ast still has separate TryExcept and...Ned Batchelder2015-12-311-6/+2
* | Make other comprehensions work on py2 and py3Ned Batchelder2015-12-311-1/+36
* | Exception tests pass on py3Ned Batchelder2015-12-311-31/+48
* | Execution flows from the end of exception handlers to the finallyNed Batchelder2015-12-281-2/+44
* | A start on try/except/finallyNed Batchelder2015-12-241-0/+18
* | WIP: measure branches with ast instead of bytecodeNed Batchelder2015-12-241-0/+178
|/
* Fix a few more occurrences of 'Coverage' to 'coverage.py'Ned Batchelder2015-07-271-1/+1
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-1/+4
* Refactor collector->data; data has only one of lines and arcs.Ned Batchelder2015-07-181-1/+1
* is better thanNed Batchelder2015-07-141-1/+1
* More reworking of the data apiNed Batchelder2015-07-121-1/+1
* Coverage._harvest_data is now Coverage.get_dataNed Batchelder2015-07-111-2/+2
* Dict literals changed in 3.5b1Ned Batchelder2015-05-271-1/+6
* Add a test with bidirectional generatorsNed Batchelder2015-04-201-0/+21
* Merge issue-324 fixNed Batchelder2015-04-201-0/+87
|\
| * Fix branch coverage for yield statements. #308 #324Ned Batchelder2015-04-201-0/+87
* | Use a windows-friendly way to find files in line_dataNed Batchelder2015-02-221-3/+2
* | Don't report negative line numbers through get_line_dataNed Batchelder2015-02-191-0/+24
* | Properly handle crazy-long code objects. #359Ned Batchelder2015-02-171-0/+21
|/
* Fully embrace SkipTest with our own method.Ned Batchelder2015-02-071-22/+23