Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replaced try...catch within tests with pytest.raisespytest-cleanup | Kevin Brown | 2019-10-10 | 1 | -5/+1 |
| | | | | | | This still leaves one in test_debug which relies on reading out the traceback and cannot easily be replaced by pytest.raises like the others. | ||||
* | Merge pull request #938 from stevenorum/master | David Lord | 2019-10-07 | 1 | -0/+6 |
|\ | | | | | Fixing compiler handling of parens around boolean comparisons. | ||||
| * | Fixing compiler handling of parens around boolean comparisons. | Steve Norum | 2019-01-12 | 1 | -0/+6 |
| | | |||||
* | | clean up numeric underscore support | David Lord | 2019-07-23 | 1 | -16/+11 |
| | | | | | | | | | | | | | | add changelog clean up docs parametrize tests explain float regex | ||||
* | | clean up scientific notation support | David Lord | 2019-07-23 | 1 | -3/+30 |
| | | | | | | | | | | | | add changelog clean up docs parametrize tests | ||||
* | | Allow '{%+' to be valid syntax (but NOP) when lstrip_blocks == False. Fixes ↵ | Mark Roth | 2019-07-20 | 1 | -0/+8 |
|/ | | | | #748. | ||||
* | Merge pull request #802 from abadger/allow-more-splatting | David Lord | 2018-05-14 | 1 | -2/+7 |
|\ | | | | | More closely match python splatting for calls | ||||
| * | More closely match python splatting for calls | Toshio Kuratomi | 2018-01-29 | 1 | -2/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python, it's legal to use splats in function calls like this: call_function('123', *b, c=5, **d) Prior to this change, jinja2 did not allow that. It mandated that all splatting had to take place at the end of the call: call_function('123', c=5, *b, **d) This commit allows both orders. Additionally, this commit adds tests for more things that are illegal: namely giving a function a positional argument after using a splat to unpack positional arguments or giving a function a named argument after using a double splat to unpack keyword arguments. | ||||
* | | {% raw %} tests and note for documentation | ngr | 2018-05-14 | 1 | -0/+12 |
|/ | |||||
* | go back to generating regex, simplifiedfeature/kill-stringdefs | David Lord | 2017-07-04 | 1 | -3/+9 |
| | | | | | | new version uses ~2KB vs 200KB memory, is ~100x faster to load move script to generate pattern to scripts directory add more tests | ||||
* | remove unnecessary \b from name regex | David Lord | 2017-07-03 | 1 | -4/+4 |
| | |||||
* | switch back to unicode escapes | David Lord | 2017-07-02 | 1 | -4/+4 |
| | |||||
* | fix unicode for py2 | David Lord | 2017-07-02 | 1 | -13/+13 |
| | |||||
* | test for new identifier lexer | David Lord | 2017-07-02 | 1 | -0/+21 |
| | | | | currently fails on special case unicode | ||||
* | Bump up the copyright to 2017 | Armin Ronacher | 2017-01-07 | 1 | -1/+1 |
| | |||||
* | Cleaned up shitty syntax in testsuite | Armin Ronacher | 2017-01-06 | 1 | -5/+5 |
| | |||||
* | Fixed long standing wrong operator precedence | Armin Ronacher | 2016-12-28 | 1 | -0/+4 |
| | |||||
* | Rename testsuite to tests and suggestions | Kartheek Lenkala | 2015-03-22 | 1 | -0/+609 |
Remove py.test from setup.py install_requires Rename testsuite folder to tests. |