From bbe0a4174c2846487bef4328b309fddd8638da39 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 7 Jan 2017 16:17:14 +0100 Subject: [PATCH] Bump up the copyright to 2017 --- jinja2/__init__.py | 2 +- jinja2/bccache.py | 2 +- jinja2/compiler.py | 2 +- jinja2/constants.py | 2 +- jinja2/debug.py | 2 +- jinja2/defaults.py | 2 +- jinja2/environment.py | 2 +- jinja2/exceptions.py | 2 +- jinja2/ext.py | 2 +- jinja2/filters.py | 2 +- jinja2/lexer.py | 2 +- jinja2/loaders.py | 2 +- jinja2/meta.py | 2 +- jinja2/nodes.py | 2 +- jinja2/optimizer.py | 2 +- jinja2/parser.py | 2 +- jinja2/runtime.py | 2 +- jinja2/sandbox.py | 2 +- jinja2/tests.py | 2 +- jinja2/utils.py | 2 +- jinja2/visitor.py | 2 +- tests/conftest.py | 2 +- tests/test_api.py | 2 +- tests/test_bytecode_cache.py | 2 +- tests/test_core_tags.py | 2 +- tests/test_debug.py | 2 +- tests/test_ext.py | 2 +- tests/test_filters.py | 2 +- tests/test_imports.py | 2 +- tests/test_inheritance.py | 2 +- tests/test_lexnparse.py | 2 +- tests/test_loader.py | 2 +- tests/test_regression.py | 2 +- tests/test_security.py | 2 +- tests/test_tests.py | 2 +- tests/test_utils.py | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/jinja2/__init__.py b/jinja2/__init__.py index 33724bfd0..de14cc31e 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 f5bd3145f..e58633e4b 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 6b2212e60..0e15d0136 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 cab203cc7..11efd1ed1 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 de6662765..07c21f1a8 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 38c53764a..e29ce5651 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 b6cd465a4..2a4d3d7da 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 c9df6dc7c..c018a33e3 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 2735dbb6e..03c63e16f 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 0ff995d2e..e13bc623a 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 d2ca32fcb..ca2914ac3 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 70882f5e4..4c7979376 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 5668e1908..7421914f7 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 5e0726a36..d1a4c3819 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 263db907b..65ab3ceb7 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 8c3cd5bb5..9742a2793 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 95268e5af..9a3c16ad7 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 b1462b589..9e00322ba 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 999540e5d..bd843b77b 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 0f04bdbca..b96d30954 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 413e7c309..ba526dfac 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 eaae2b0c2..1830b1eb2 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 90a143b75..5708144fb 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 7a6012931..42ff84002 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 0a865f53e..04380082b 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 2303da993..22ce1e836 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 3a06a42ea..79f783066 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 2e85a9a50..318a347c4 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 67591270b..a6d5161b1 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 32e2c68db..7746c2d7c 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 1f8f74656..20d2c6d1e 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 f4ac25582..7e12628b9 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 7d2ad3a80..b8c8ac337 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 ff8f2b11d..8e4222e52 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 03cd26b25..0dead3bfa 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 c26180280..2400fb8bd 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