Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use fspath instead of str | David Lord | 2019-10-21 | 1 | -5/+19 |
| | |||||
* | support pathlib in FileSystemLoader and ModuleLoader | Alex Chan | 2019-10-21 | 1 | -0/+5 |
| | |||||
* | Import abstract base classes from collections.abc | Florian Bruhin | 2018-08-07 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | In Python 3.7, importing ABCs directly from the `collections` module shows a warning (and in Python 3.8 it will stop working) - see https://github.com/python/cpython/commit/c66f9f8d3909f588c251957d499599a1680e2320 This fixes various DeprecationWarnings such as those: ``` .../jinja2/utils.py:485: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working from collections import MutableMapping .../jinja2/runtime.py:318: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working from collections import Mapping ``` | ||||
* | Merge pull request #470 from snoack/partial-next | Jeff Widman | 2016-04-14 | 1 | -3/+0 |
|\ | | | | | Use partial(next, ...) instead get_next() | ||||
| * | Use partial(next, ...) instead get_next() | Sebastian Noack | 2015-08-10 | 1 | -3/+0 |
| | | |||||
* | | Improve with_metaclass() | Sebastian Noack | 2015-08-05 | 1 | -14/+5 |
|/ | |||||
* | Fix number test failing for long in Python 2 | ThiefMaster | 2015-02-06 | 1 | -0/+2 |
| | |||||
* | Removed some no longer needed code from compat | Armin Ronacher | 2013-05-20 | 1 | -16/+0 |
| | |||||
* | Removed duplication from types that was only necessary for IronPython | Armin Ronacher | 2013-05-20 | 1 | -19/+0 |
| | |||||
* | Since we no longer support 2.5 we can use the builtin next() function | Armin Ronacher | 2013-05-20 | 1 | -6/+0 |
| | |||||
* | Disable py_compile for Python 3 and pypy | Armin Ronacher | 2013-05-20 | 1 | -0/+1 |
| | |||||
* | Renamed helper classes in with_metaclass | Armin Ronacher | 2013-05-20 | 1 | -2/+2 |
| | |||||
* | Corrected a newline | Armin Ronacher | 2013-05-20 | 1 | -1/+1 |
| | |||||
* | More cleanup in the utils module | Armin Ronacher | 2013-05-20 | 1 | -2/+24 |
| | |||||
* | Added an explanation for how with_metaclass works | Armin Ronacher | 2013-05-20 | 1 | -0/+9 |
| | |||||
* | Make the runtime leak less of the version hacks | Armin Ronacher | 2013-05-20 | 1 | -44/+40 |
| | |||||
* | Removed unnecessary del | Armin Ronacher | 2013-05-19 | 1 | -1/+0 |
| | |||||
* | Added unicode mixin for unified string logic | Armin Ronacher | 2013-05-19 | 1 | -0/+11 |
| | |||||
* | PY3 -> PY2 macro | Armin Ronacher | 2013-05-19 | 1 | -26/+60 |
| | |||||
* | Unified version checks where appropriate | Armin Ronacher | 2013-05-19 | 1 | -0/+2 |
| | |||||
* | Moved all six usages (ignoring testsuite) into jinja2._compat | Armin Ronacher | 2013-05-19 | 1 | -0/+52 |
| | |||||
* | Fixed a docstring and a syntax error on 3.3 | Armin Ronacher | 2013-05-19 | 1 | -3/+3 |
| | |||||
* | six.advance_iterator -> next | Armin Ronacher | 2013-05-19 | 1 | -4/+4 |
| | |||||
* | Merge remote-tracking branch 'ThomasWaldmann/sprint-branch' into sprint-branch | Armin Ronacher | 2013-05-18 | 1 | -0/+5 |
| | |||||
* | stuff missing from previous commit, thanks git | Thomas Waldmann | 2013-05-18 | 1 | -1/+2 |
| | |||||
* | new jinja2._compat module for stuff not yet in six 1.3.0 | Thomas Waldmann | 2013-05-18 | 1 | -0/+18 |