summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make slice work with async generatorsfeature/asyncArmin Ronacher2016-12-292-0/+15
|
* Also test on 3.6Armin Ronacher2016-12-291-0/+1
|
* Added changelog entryArmin Ronacher2016-12-291-0/+1
|
* Improved tests for sumArmin Ronacher2016-12-291-10/+12
|
* ported list and sumArmin Ronacher2016-12-292-1/+69
|
* Improved tests for selectArmin Ronacher2016-12-291-9/+15
|
* Ported map and selectArmin Ronacher2016-12-293-20/+75
|
* Test sync and async generatorArmin Ronacher2016-12-291-6/+8
|
* Added reject/rejectattr with basic async supportArmin Ronacher2016-12-293-7/+48
|
* Made join filter work with asyncArmin Ronacher2016-12-282-2/+37
|
* Restructured tests for async filtersArmin Ronacher2016-12-281-17/+24
|
* Made groupby work with asyncArmin Ronacher2016-12-282-10/+80
|
* Improved internal async filter frameworkArmin Ronacher2016-12-281-10/+34
|
* Added note for async from filter callsArmin Ronacher2016-12-281-0/+5
|
* First pass on async support for filtersArmin Ronacher2016-12-286-3/+71
|
* Made the env._async property public for filtersArmin Ronacher2016-12-283-30/+30
|
* Started doc work for asyncArmin Ronacher2016-12-281-0/+40
|
* Make tests pass on older python versions againArmin Ronacher2016-12-282-11/+7
|
* Support the same set of loop functions for async modeArmin Ronacher2016-12-285-38/+258
|
* Improved wrapper code so that the API is more consistent on failureArmin Ronacher2016-12-282-6/+36
|
* Fixed error messageArmin Ronacher2016-12-281-1/+1
|
* Added support for async loop contextArmin Ronacher2016-12-284-17/+87
|
* Added basic support for async iterArmin Ronacher2016-12-283-2/+34
|
* Wrap generate to support async modeArmin Ronacher2016-12-282-0/+37
|
* Auto skip async tests for importsArmin Ronacher2016-12-281-0/+2
|
* Added tests for async functionality with imports and includesArmin Ronacher2016-12-284-25/+156
|
* Added untested support for imports and includes in async modeArmin Ronacher2016-12-283-7/+24
|
* Use more _get_default_module callsArmin Ronacher2016-12-282-5/+8
|
* First pass on implementing async default moduleArmin Ronacher2016-12-282-2/+39
|
* Switch to short tracebackArmin Ronacher2016-12-281-1/+1
|
* RewrapArmin Ronacher2016-12-281-1/+2
|
* Stop use of .module in generated codeArmin Ronacher2016-12-282-5/+8
|
* Restore original render func for non async usageArmin Ronacher2016-12-282-1/+20
|
* Basic async support for blocksArmin Ronacher2016-12-283-9/+49
|
* Updated setup.cfg for pytestArmin Ronacher2016-12-281-2/+2
|
* Improved async testArmin Ronacher2016-12-281-4/+7
|
* Added test for macro async supportArmin Ronacher2016-12-281-0/+12
|
* Automatically await on function calls if necessaryArmin Ronacher2016-12-283-0/+35
|
* Initial support for async renderingArmin Ronacher2016-12-286-12/+95
|
* Add async flagsArmin Ronacher2016-12-282-3/+19
|
* Fixed long standing wrong operator precedenceArmin Ronacher2016-12-283-52/+29
|
* Updated gitignore to include venvsArmin Ronacher2016-12-281-0/+2
|
* Added a test for generator_stopArmin Ronacher2016-12-281-0/+16
|
* Restrict where we collect testsArmin Ronacher2016-12-271-1/+1
|
* Merge branch 'master' of github.com:mitsuhiko/jinja2Armin Ronacher2016-12-2724-134/+177
|\
| * Uses re.compile flags argument, not inline flags (#628)jfinkels2016-12-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | This commit replaces the use of terminal inline flags in a regular expression in `re.compile`, re.compile(r'\w+(?u)') with arguments to the `re.compile` function itself, re.compile(r'\w+', re.UNICODE) because the former is deprecated as of Python 3.6.
| * Fix typos in CHANGES (#626)Andrew Arendt2016-12-141-4/+4
| |
| * Add license_file to setup.cfg metadata (#609)Philippe Ombredanne2016-11-011-0/+3
| | | | | | | | Without this, the LICENSE file is never included in the built wheels: this makes it harder for users to comply with the license. With this addition a file LICENSE.txt will be created in the `xxx.dist-info` directory with the content of the `license_file` file, e.g. the top level LICENSE.
| * Fix typo in clear_caches docstringMarcelo Jorge Vieira2016-09-091-1/+1
| |
| * Fixed typo in jinja2/loaders.py (#606)Marcelo Jorge Vieira2016-09-021-2/+2
| | | | | | Replaced 'fileame' with 'filename'