summaryrefslogtreecommitdiff
path: root/tests/test_parser.py
Commit message (Collapse)AuthorAgeFilesLines
* Pragmas on decorators apply to the entire function or class. #131Ned Batchelder2015-11-281-0/+49
|
* Clean up PythonParser a bit.Ned Batchelder2015-11-281-6/+5
|
* Correct the handling of IndentationError and TokenErrorNed Batchelder2015-08-091-0/+20
|
* Fix a few more occurrences of 'Coverage' to 'coverage.py'Ned Batchelder2015-07-271-2/+2
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-1/+4
|
* Clean up some pylintNed Batchelder2015-07-031-0/+1
|
* Files with incorrect encoding declarations are no longer ignored. #351Ned Batchelder2015-05-171-1/+5
|
* All Python source is Unicode internally.Ned Batchelder2015-05-171-0/+5
| | | | | Unfortunately, this meant hacking around a silly Python 2 restriction (can't compile a Unicode string containing an encoding declaration).
* Fix branch coverage for yield statements. #308 #324Ned Batchelder2015-04-201-2/+4
| | | | | | | | | | | Turns out the "call" and "return" trace events are really "start frame" and "end frame". They happen not only when functions are entered and left, but when generators yield and resume. We aren't interested in arcs into and out of yield statements, so the trace functions look more closely to see what's really happening, and record an arc in human-friendly terms. Thanks for Mickie Betz for pushing on this bug, although her code is no longer here. :(
* Tweaks to Mickie's changes.Ned Batchelder2015-04-181-2/+3
|
* Including generator yield statements when doing end of code calculations ↵Mickie Betz2015-04-141-0/+13
| | | | issue 324
* Don't be confused by files with missing final newlines. #293Ned Batchelder2014-11-291-2/+30
|
* Continued refactoring of CodeUnitNed Batchelder2014-05-181-2/+2
|
* More refactoring of hacked Mako supportNed Batchelder2014-04-181-27/+27
|
* Hacked-in Mako support.Ned Batchelder2014-03-081-2/+2
|
* Directory changed: test->tests. Adapt.Ned Batchelder2013-02-021-1/+1
|
* Move the test directory to tests to avoid conflicts with the stdlib test ↵Ned Batchelder2013-02-021-0/+131
package.