summaryrefslogtreecommitdiff
path: root/tests/basics/lexer.py
AgeCommit message (Collapse)Author
2018-02-14tests: Automatically skip tests that require eval, exec or frozenset.Damien George
2017-05-12tests/basics/lexer: Add line continuation tests for lexer.Tom Collins
Tests for an issue with line continuation failing in paste mode due to the lexer only checking for \n in the "following" character position, before next_char() has had a chance to convert \r and \r\n to \n.
2017-05-09tests/basics/lexer: Add lexer tests for input starting with newlines.Tom Collins
2016-12-22tests/basics/lexer: Add a test for newline-escaping within a string.Damien George
2015-07-23py/lexer: Raise SyntaxError when str hex escape sequence is malformed.Damien George
Addresses issue #1390.
2015-04-04tests: Add tests to exercise lexer; and some more complex number tests.Damien George