summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
Commit message (Expand)AuthorAgeFilesLines
* 2.6 and 2.7 are not different wrt constants in while loopsNed Batchelder2016-12-241-11/+5
* Move the test program into the testNed Batchelder2016-12-241-7/+10
* also use AST for while constants in python-2.7 #502issue-502-7loic2016-12-151-2/+19
* Bug #496 wasn't about the single-line continue, just the constant while.Ned Batchelder2016-12-181-3/+4
* Fix #496, while-true loop with a continue.Ned Batchelder2016-12-181-0/+16
* Clean up #493 fixNed Batchelder2016-12-181-24/+9
* finally happens before return in a try #493issue-493-2loic2016-12-181-0/+18
* Async protocol changed in 3.5.2. Remove a deprecation warningNed Batchelder2016-11-271-1/+1
* Use standard skipTest, which unittest-mixins will override.Ned Batchelder2016-06-121-5/+5
* Better descriptions of missing one-line executables. Part of #475Ned Batchelder2016-03-271-0/+30
* Entry arcs now use the negative first line of the code object instead of -1.Ned Batchelder2016-03-021-45/+45
* Better branch-missed messages for lambdas.Ned Batchelder2016-02-251-0/+20
* More work on better missing branch descriptionsNed Batchelder2016-02-141-1/+1
* Didn't mean to leave that there, of courseNed Batchelder2016-02-071-1/+0
* Properly handle {**{'a':1}} literalsNed Batchelder2016-02-071-0/+33
* Yield statements that are not resumed shouldn't be marked as missing. #440Ned Batchelder2016-01-311-0/+16
* Don't track unhandled exception branchesNed Batchelder2016-01-291-12/+12
* Fix #466: multi-line statements first in decorated functionsNed Batchelder2016-01-181-0/+32
* Stop treating yield-from and await as function returnsNed Batchelder2016-01-161-3/+5
* 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