Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | style: fix long lines and avoid backslashesnedbat/unittest2pytest | Ned Batchelder | 2021-01-31 | 1 | -57/+85 |
| | |||||
* | style: correct placement of auto-added pytest imports | Ned Batchelder | 2021-01-31 | 1 | -1/+2 |
| | |||||
* | refactor: unittest2pytest -w tests | Ned Batchelder | 2021-01-31 | 1 | -108/+61 |
| | | | | One step of moving to pure pytest tests. | ||||
* | Fix a test to be usable with PEP626 | Ned Batchelder | 2021-01-10 | 1 | -33/+35 |
| | | | | | | | In the old code, the return and raise were unreachable, so Python 3.10 compiled them away. This meant the return and raise messages weren't in the missing arc fragments. The new code has a path to the return and raise. | ||||
* | PEP 626: Docstring-only functions changed again | Ned Batchelder | 2021-01-10 | 1 | -1/+2 |
| | |||||
* | Use set literals | Ned Batchelder | 2021-01-03 | 1 | -6/+6 |
| | |||||
* | PyPy 3.7 doesn't act exactly like CPython 3.7 | Ned Batchelder | 2020-10-10 | 1 | -1/+1 |
| | |||||
* | More bitbucket->github urls | Ned Batchelder | 2020-08-18 | 1 | -2/+2 |
| | |||||
* | A known failure has been fixed | Ned Batchelder | 2020-07-05 | 1 | -1/+1 |
| | |||||
* | Better xfail mechanism | Ned Batchelder | 2020-01-18 | 1 | -3/+6 |
| | |||||
* | xfail a test due to a PyPy3 7.3.0 change | Ned Batchelder | 2019-12-31 | 1 | -1/+3 |
| | |||||
* | Move test helpers to tests.helpers | Ned Batchelder | 2019-12-31 | 1 | -3/+4 |
| | |||||
* | Move arcz_to_arcs to misc so we can use it elsewhere | Ned Batchelder | 2019-06-19 | 1 | -4/+4 |
| | |||||
* | Asserts should be expected,actual | Ned Batchelder | 2018-12-24 | 1 | -3/+3 |
| | |||||
* | Adapt to 3.8's way of tracing decorated functions | Ned Batchelder | 2018-11-03 | 1 | -3/+14 |
| | |||||
* | Finally jumps back to exiting lines | Ned Batchelder | 2018-10-06 | 1 | -19/+50 |
| | | | | | | In Python 3.8, when a finally clause is run because a line in the try block is exiting the block, the exiting line is visited again after the finally block. | ||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Make version checking more uniform | Ned Batchelder | 2018-06-13 | 1 | -1/+1 |
| | |||||
* | Adapt to a recent 3.7 change in how functions with only docstrings get ↵ | Ned Batchelder | 2018-06-13 | 1 | -2/+8 |
| | | | | line-numbered | ||||
* | Undo some 3.7b4 ast tweaks | Ned Batchelder | 2018-06-02 | 1 | -5/+1 |
| | |||||
* | No more support for 2.6 or 3.3 | Ned Batchelder | 2018-05-05 | 1 | -4/+0 |
| | |||||
* | Properly handle empty decorated functions in 3.7. #640 | Ned Batchelder | 2018-02-09 | 1 | -0/+17 |
| | |||||
* | Python 3.7 no longer includes class docstrings in the lnotab table | Ned Batchelder | 2017-10-05 | 1 | -4/+6 |
| | |||||
* | More-precise no-coverage pragmas | Ned Batchelder | 2017-01-19 | 1 | -1/+1 |
| | |||||
* | Properly handle if-statements optimized away. #522 | Ned Batchelder | 2017-01-16 | 1 | -1/+1 |
| | |||||
* | More pragmas for test skips | Ned Batchelder | 2017-01-14 | 1 | -1/+1 |
| | |||||
* | Use standard skipTest, which unittest-mixins will override. | Ned Batchelder | 2016-06-12 | 1 | -1/+1 |
| | |||||
* | Better descriptions of missing one-line executables. Part of #475 | Ned Batchelder | 2016-03-27 | 1 | -5/+5 |
| | |||||
* | Better branch-missed messages for lambdas. | Ned Batchelder | 2016-02-25 | 1 | -0/+14 |
| | |||||
* | Pick off some lint | Ned Batchelder | 2016-02-15 | 1 | -1/+2 |
| | |||||
* | Add missing branch explanations for while-loop | Ned Batchelder | 2016-02-15 | 1 | -1/+14 |
| | |||||
* | Skip a test on 2.6 | Ned Batchelder | 2016-02-15 | 1 | -0/+4 |
| | |||||
* | More missing-branch descriptions | Ned Batchelder | 2016-02-15 | 1 | -1/+12 |
| | |||||
* | More work on better missing branch descriptions | Ned Batchelder | 2016-02-14 | 1 | -4/+34 |
| | |||||
* | Make these tests just a little easier to write | Ned Batchelder | 2016-02-13 | 1 | -9/+9 |
| | |||||
* | Add missing branch descriptions for handling exceptions | Ned Batchelder | 2016-02-13 | 1 | -0/+20 |
| | |||||
* | More work on the better missed-branch messages | Ned Batchelder | 2016-02-13 | 1 | -0/+28 |
| | |||||
* | More progress on better missed-branch descriptions | Ned Batchelder | 2016-02-13 | 1 | -0/+5 |
| | |||||
* | Fix a type error in a new test | Ned Batchelder | 2016-02-11 | 1 | -1/+1 |
| | |||||
* | missing_arc_description is better than arc_destination_description. One test ↵ | Ned Batchelder | 2016-02-08 | 1 | -0/+32 |
| | | | | broken. | ||||
* | Class docstrings shouldn't be considered executable. Not sure what happened ↵ | Ned Batchelder | 2016-01-11 | 1 | -3/+3 |
| | | | | there... | ||||
* | Class docstrings are executable. | Ned Batchelder | 2016-01-10 | 1 | -3/+3 |
| | |||||
* | Merge in the default branch | Ned Batchelder | 2016-01-02 | 1 | -1/+1 |
|\ | | | | | | | | | --HG-- branch : ast-branch | ||||
| * | if 0: might not do what we want, use a non-constant | Ned Batchelder | 2015-12-24 | 1 | -1/+1 |
| | | |||||
* | | Fix another test changed by better try-except measurement | Ned Batchelder | 2016-01-02 | 1 | -1/+1 |
|/ | | | | | --HG-- branch : ast-branch | ||||
* | Pragmas on decorators apply to the entire function or class. #131 | Ned Batchelder | 2015-11-28 | 1 | -0/+49 |
| | |||||
* | Clean up PythonParser a bit. | Ned Batchelder | 2015-11-28 | 1 | -6/+5 |
| | |||||
* | Correct the handling of IndentationError and TokenError | Ned Batchelder | 2015-08-09 | 1 | -0/+20 |
| | |||||
* | Fix a few more occurrences of 'Coverage' to 'coverage.py' | Ned Batchelder | 2015-07-27 | 1 | -2/+2 |
| | |||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -1/+4 |
| |