[Python-modules-commits] [jinja2] branch upstream updated (687f65c -> 8fb0770)

Piotr Ożarowski piotr at moszumanska.debian.org
Thu Nov 30 10:11:40 UTC 2017


This is an automated email from the git hooks/post-receive script.

piotr pushed a change to branch upstream
in repository jinja2.

      from  687f65c   Import jinja2_2.9.6.orig.tar.gz
       new  8fb0770   Import jinja2_2.10.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS                                       |   1 +
 CHANGES => CHANGES.rst                        | 240 +++++++---
 Jinja2.egg-info/PKG-INFO                      |   8 +-
 Jinja2.egg-info/SOURCES.txt                   |  36 +-
 MANIFEST.in                                   |  20 +-
 Makefile                                      |  21 -
 PKG-INFO                                      |   8 +-
 README.rst                                    |   4 +-
 artwork/.DS_Store                             | Bin 6148 -> 0 bytes
 docs/.DS_Store                                | Bin 8196 -> 0 bytes
 docs/_templates/sidebarintro.html             |   4 +-
 docs/api.rst                                  |  11 +-
 docs/changelog.rst                            |   2 +-
 docs/contents.rst.inc                         |   1 +
 docs/extensions.rst                           |  17 +-
 docs/faq.rst                                  |   2 +-
 docs/intro.rst                                |  12 +-
 docs/jinjaext.py                              |  20 +-
 docs/nativetypes.rst                          |  64 +++
 docs/templates.rst                            | 117 ++++-
 ext/Vim/jinja.vim                             |   2 +-
 jinja2/__init__.py                            |   5 +-
 jinja2/_identifier.py                         |   2 +
 jinja2/_stringdefs.py                         |  71 ---
 jinja2/asyncsupport.py                        |  14 +-
 jinja2/bccache.py                             |   2 +-
 jinja2/compiler.py                            |  88 +++-
 jinja2/debug.py                               |   2 +-
 jinja2/defaults.py                            |   6 +-
 jinja2/environment.py                         |   2 +-
 jinja2/ext.py                                 |  20 +-
 jinja2/filters.py                             | 203 ++++++--
 jinja2/idtracking.py                          |  25 +-
 jinja2/lexer.py                               |  56 +--
 jinja2/nativetypes.py                         | 220 +++++++++
 jinja2/nodes.py                               |  94 +++-
 jinja2/parser.py                              |  33 +-
 jinja2/runtime.py                             |  54 ++-
 jinja2/sandbox.py                             |   2 +-
 jinja2/tests.py                               |  54 +--
 jinja2/utils.py                               |  25 +-
 setup.cfg                                     |   5 +-
 setup.py                                      |   7 +-
 tests/conftest.py                             |  77 +++
 docs/_static/.ignore => tests/res/__init__.py |   0
 tests/res/templates/broken.html               |   3 +
 tests/res/templates/foo/test.html             |   1 +
 tests/res/templates/syntaxerror.html          |   4 +
 tests/res/templates/test.html                 |   1 +
 tests/test_api.py                             | 340 ++++++++++++++
 tests/test_async.py                           | 512 ++++++++++++++++++++
 tests/test_asyncfilters.py                    | 227 +++++++++
 tests/test_bytecode_cache.py                  |  92 ++++
 tests/test_core_tags.py                       | 504 ++++++++++++++++++++
 tests/test_debug.py                           |  84 ++++
 tests/test_ext.py                             | 588 +++++++++++++++++++++++
 tests/test_features.py                        |  40 ++
 tests/test_filters.py                         | 652 ++++++++++++++++++++++++++
 tests/test_idtracking.py                      | 216 +++++++++
 tests/test_imports.py                         | 180 +++++++
 tests/test_inheritance.py                     | 248 ++++++++++
 tests/test_lexnparse.py                       | 640 +++++++++++++++++++++++++
 tests/test_loader.py                          | 234 +++++++++
 tests/test_nativetypes.py                     | 110 +++++
 tests/test_regression.py                      | 541 +++++++++++++++++++++
 tests/test_security.py                        | 189 ++++++++
 tests/test_tests.py                           | 161 +++++++
 tests/test_utils.py                           |  86 ++++
 68 files changed, 6904 insertions(+), 406 deletions(-)
 rename CHANGES => CHANGES.rst (76%)
 delete mode 100644 Makefile
 delete mode 100644 artwork/.DS_Store
 delete mode 100644 docs/.DS_Store
 create mode 100644 docs/nativetypes.rst
 create mode 100644 jinja2/_identifier.py
 delete mode 100644 jinja2/_stringdefs.py
 create mode 100644 jinja2/nativetypes.py
 create mode 100644 tests/conftest.py
 copy docs/_static/.ignore => tests/res/__init__.py (100%)
 create mode 100644 tests/res/templates/broken.html
 create mode 100644 tests/res/templates/foo/test.html
 create mode 100644 tests/res/templates/syntaxerror.html
 create mode 100644 tests/res/templates/test.html
 create mode 100644 tests/test_api.py
 create mode 100644 tests/test_async.py
 create mode 100644 tests/test_asyncfilters.py
 create mode 100644 tests/test_bytecode_cache.py
 create mode 100644 tests/test_core_tags.py
 create mode 100644 tests/test_debug.py
 create mode 100644 tests/test_ext.py
 create mode 100644 tests/test_features.py
 create mode 100644 tests/test_filters.py
 create mode 100644 tests/test_idtracking.py
 create mode 100644 tests/test_imports.py
 create mode 100644 tests/test_inheritance.py
 create mode 100644 tests/test_lexnparse.py
 create mode 100644 tests/test_loader.py
 create mode 100644 tests/test_nativetypes.py
 create mode 100644 tests/test_regression.py
 create mode 100644 tests/test_security.py
 create mode 100644 tests/test_tests.py
 create mode 100644 tests/test_utils.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/jinja2.git



More information about the Python-modules-commits mailing list