From: Armin Ronacher Date: Sat, 7 Jan 2017 15:17:14 +0000 (+0100) Subject: Bump up the copyright to 2017 X-Git-Tag: 2.9~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbe0a4174c2846487bef4328b309fddd8638da39;p=thirdparty%2Fjinja.git Bump up the copyright to 2017 --- diff --git a/jinja2/__init__.py b/jinja2/__init__.py index 33724bfd..de14cc31 100644 --- a/jinja2/__init__.py +++ b/jinja2/__init__.py @@ -23,7 +23,7 @@ {% endblock %} - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ __docformat__ = 'restructuredtext en' diff --git a/jinja2/bccache.py b/jinja2/bccache.py index f5bd3145..e58633e4 100644 --- a/jinja2/bccache.py +++ b/jinja2/bccache.py @@ -11,7 +11,7 @@ Situations where this is useful are often forking web applications that are initialized on the first request. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ from os import path, listdir diff --git a/jinja2/compiler.py b/jinja2/compiler.py index 6b2212e6..0e15d013 100644 --- a/jinja2/compiler.py +++ b/jinja2/compiler.py @@ -5,7 +5,7 @@ Compiles nodes into python code. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from itertools import chain diff --git a/jinja2/constants.py b/jinja2/constants.py index cab203cc..11efd1ed 100644 --- a/jinja2/constants.py +++ b/jinja2/constants.py @@ -5,7 +5,7 @@ Various constants. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ diff --git a/jinja2/debug.py b/jinja2/debug.py index de666276..07c21f1a 100644 --- a/jinja2/debug.py +++ b/jinja2/debug.py @@ -7,7 +7,7 @@ ugly stuff with the Python traceback system in order to achieve tracebacks with correct line numbers, locals and contents. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import sys diff --git a/jinja2/defaults.py b/jinja2/defaults.py index 38c53764..e29ce565 100644 --- a/jinja2/defaults.py +++ b/jinja2/defaults.py @@ -5,7 +5,7 @@ Jinja default filters and tags. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from jinja2._compat import range_type diff --git a/jinja2/environment.py b/jinja2/environment.py index b6cd465a..2a4d3d7d 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -5,7 +5,7 @@ Provides a class that holds runtime and parsing time options. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import os diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py index c9df6dc7..c018a33e 100644 --- a/jinja2/exceptions.py +++ b/jinja2/exceptions.py @@ -5,7 +5,7 @@ Jinja exceptions. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from jinja2._compat import imap, text_type, PY2, implements_to_string diff --git a/jinja2/ext.py b/jinja2/ext.py index 2735dbb6..03c63e16 100644 --- a/jinja2/ext.py +++ b/jinja2/ext.py @@ -7,7 +7,7 @@ tags work. By default two example extensions exist: an i18n and a cache extension. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ from jinja2 import nodes diff --git a/jinja2/filters.py b/jinja2/filters.py index 0ff995d2..e13bc623 100644 --- a/jinja2/filters.py +++ b/jinja2/filters.py @@ -5,7 +5,7 @@ Bundled jinja filters. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/lexer.py b/jinja2/lexer.py index d2ca32fc..ca2914ac 100644 --- a/jinja2/lexer.py +++ b/jinja2/lexer.py @@ -11,7 +11,7 @@ operators we don't allow in templates. On the other hand it separates template code and python code in expressions. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/loaders.py b/jinja2/loaders.py index 70882f5e..4c797937 100644 --- a/jinja2/loaders.py +++ b/jinja2/loaders.py @@ -5,7 +5,7 @@ Jinja loader classes. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import os diff --git a/jinja2/meta.py b/jinja2/meta.py index 5668e190..7421914f 100644 --- a/jinja2/meta.py +++ b/jinja2/meta.py @@ -6,7 +6,7 @@ This module implements various functions that exposes information about templates that might be interesting for various kinds of applications. - :copyright: (c) 2010 by the Jinja Team, see AUTHORS for more details. + :copyright: (c) 2017 by the Jinja Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ from jinja2 import nodes diff --git a/jinja2/nodes.py b/jinja2/nodes.py index 5e0726a3..d1a4c381 100644 --- a/jinja2/nodes.py +++ b/jinja2/nodes.py @@ -9,7 +9,7 @@ `get_nodes` used by the parser and translator in order to normalize python and jinja nodes. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import types diff --git a/jinja2/optimizer.py b/jinja2/optimizer.py index 263db907..65ab3ceb 100644 --- a/jinja2/optimizer.py +++ b/jinja2/optimizer.py @@ -13,7 +13,7 @@ The solution would be a second syntax tree that has the scoping rules stored. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ from jinja2 import nodes diff --git a/jinja2/parser.py b/jinja2/parser.py index 8c3cd5bb..9742a279 100644 --- a/jinja2/parser.py +++ b/jinja2/parser.py @@ -5,7 +5,7 @@ Implements the template parser. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from jinja2 import nodes diff --git a/jinja2/runtime.py b/jinja2/runtime.py index 95268e5a..9a3c16ad 100644 --- a/jinja2/runtime.py +++ b/jinja2/runtime.py @@ -5,7 +5,7 @@ Runtime helpers. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ import sys diff --git a/jinja2/sandbox.py b/jinja2/sandbox.py index b1462b58..9e00322b 100644 --- a/jinja2/sandbox.py +++ b/jinja2/sandbox.py @@ -9,7 +9,7 @@ The behavior can be changed by subclassing the environment. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ import types diff --git a/jinja2/tests.py b/jinja2/tests.py index 999540e5..bd843b77 100644 --- a/jinja2/tests.py +++ b/jinja2/tests.py @@ -5,7 +5,7 @@ Jinja test functions. Used with the "is" operator. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/utils.py b/jinja2/utils.py index 0f04bdbc..b96d3095 100644 --- a/jinja2/utils.py +++ b/jinja2/utils.py @@ -5,7 +5,7 @@ Utility functions. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/visitor.py b/jinja2/visitor.py index 413e7c30..ba526dfa 100644 --- a/jinja2/visitor.py +++ b/jinja2/visitor.py @@ -5,7 +5,7 @@ This module implements a visitor for the nodes. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD. """ from jinja2.nodes import Node diff --git a/tests/conftest.py b/tests/conftest.py index eaae2b0c..1830b1eb 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,7 +5,7 @@ Configuration and Fixtures for the tests - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_api.py b/tests/test_api.py index 90a143b7..5708144f 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -5,7 +5,7 @@ Tests the public API and related stuff. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import os diff --git a/tests/test_bytecode_cache.py b/tests/test_bytecode_cache.py index 7a601293..42ff8400 100644 --- a/tests/test_bytecode_cache.py +++ b/tests/test_bytecode_cache.py @@ -5,7 +5,7 @@ Test bytecode caching - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_core_tags.py b/tests/test_core_tags.py index 0a865f53..04380082 100644 --- a/tests/test_core_tags.py +++ b/tests/test_core_tags.py @@ -5,7 +5,7 @@ Test the core tags like for and if. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_debug.py b/tests/test_debug.py index 2303da99..22ce1e83 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -5,7 +5,7 @@ Tests the debug system. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_ext.py b/tests/test_ext.py index 3a06a42e..79f78306 100644 --- a/tests/test_ext.py +++ b/tests/test_ext.py @@ -5,7 +5,7 @@ Tests for the extensions. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/tests/test_filters.py b/tests/test_filters.py index 2e85a9a5..318a347c 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -5,7 +5,7 @@ Tests for the jinja filters. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_imports.py b/tests/test_imports.py index 67591270..a6d5161b 100644 --- a/tests/test_imports.py +++ b/tests/test_imports.py @@ -5,7 +5,7 @@ Tests the import features (with includes). - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_inheritance.py b/tests/test_inheritance.py index 32e2c68d..7746c2d7 100644 --- a/tests/test_inheritance.py +++ b/tests/test_inheritance.py @@ -5,7 +5,7 @@ Tests the template inheritance feature. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_lexnparse.py b/tests/test_lexnparse.py index 1f8f7465..20d2c6d1 100644 --- a/tests/test_lexnparse.py +++ b/tests/test_lexnparse.py @@ -5,7 +5,7 @@ All the unittests regarding lexing, parsing and syntax. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_loader.py b/tests/test_loader.py index f4ac2558..7e12628b 100644 --- a/tests/test_loader.py +++ b/tests/test_loader.py @@ -5,7 +5,7 @@ Test the loaders. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import os diff --git a/tests/test_regression.py b/tests/test_regression.py index 7d2ad3a8..b8c8ac33 100644 --- a/tests/test_regression.py +++ b/tests/test_regression.py @@ -5,7 +5,7 @@ Tests corner cases and bugs. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import sys diff --git a/tests/test_security.py b/tests/test_security.py index ff8f2b11..8e4222e5 100644 --- a/tests/test_security.py +++ b/tests/test_security.py @@ -5,7 +5,7 @@ Checks the sandbox and other security features. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_tests.py b/tests/test_tests.py index 03cd26b2..0dead3bf 100644 --- a/tests/test_tests.py +++ b/tests/test_tests.py @@ -5,7 +5,7 @@ Who tests the tests? - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import pytest diff --git a/tests/test_utils.py b/tests/test_utils.py index c2618028..2400fb8b 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -5,7 +5,7 @@ Tests utilities jinja uses. - :copyright: (c) 2010 by the Jinja Team. + :copyright: (c) 2017 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import gc