summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/syntaxerror.py
Commit message (Collapse)AuthorAge
* tests: Update test suite to be compatible with CPython 3.6.Damien George2017-01-09
| | | | | | | | CPython 3.6 has a few changes that, when run on uPy's test suite, give a different output to CPython 3.5. uPy currently officially supports the 3.4 language definition, but it's useful to be able to run the test suite with 3.4/3.5/3.6 versions of CPython. This patch makes such changes to support 3.6.
* tests: Improve test coverage of py/compile.c.Damien George2016-10-11
|
* py/compile: Do proper checking of * and ** in function definition.Damien George2015-11-23
| | | | | This patch checks that there is only one *, and that ** is last in the arg list.
* tests: Allow tests to pass against CPython 3.5.Damien George2015-10-02
| | | | | All breaking changes going from 3.4 to 3.5 are contained in basics/python34.py.
* py/compile: Refine SyntaxError for repeated use of global/nonlocal.Damien George2015-09-07
|
* tests: Add tests for attrtuple, and for more corner cases.Damien George2015-04-22
|
* tests: Add tests to exercise lexer; and some more complex number tests.Damien George2015-04-04
|
* tests: Add tests for SyntaxError, TypeError, and other missing things.Damien George2015-03-25
This is intended to improve coverage of the test suite.