summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2017-01-07 16:17:14 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2017-01-07 16:17:14 +0100
commitbbe0a4174c2846487bef4328b309fddd8638da39 (patch)
tree4a16e03f91bc4373a5fcdd5fe8f7c675a27c376b
parentb81a8a3e37bcc117fde391249eafdfae5a3f8869 (diff)
downloadjinja2-bbe0a4174c2846487bef4328b309fddd8638da39.tar.gz
Bump up the copyright to 2017
-rw-r--r--jinja2/__init__.py2
-rw-r--r--jinja2/bccache.py2
-rw-r--r--jinja2/compiler.py2
-rw-r--r--jinja2/constants.py2
-rw-r--r--jinja2/debug.py2
-rw-r--r--jinja2/defaults.py2
-rw-r--r--jinja2/environment.py2
-rw-r--r--jinja2/exceptions.py2
-rw-r--r--jinja2/ext.py2
-rw-r--r--jinja2/filters.py2
-rw-r--r--jinja2/lexer.py2
-rw-r--r--jinja2/loaders.py2
-rw-r--r--jinja2/meta.py2
-rw-r--r--jinja2/nodes.py2
-rw-r--r--jinja2/optimizer.py2
-rw-r--r--jinja2/parser.py2
-rw-r--r--jinja2/runtime.py2
-rw-r--r--jinja2/sandbox.py2
-rw-r--r--jinja2/tests.py2
-rw-r--r--jinja2/utils.py2
-rw-r--r--jinja2/visitor.py2
-rw-r--r--tests/conftest.py2
-rw-r--r--tests/test_api.py2
-rw-r--r--tests/test_bytecode_cache.py2
-rw-r--r--tests/test_core_tags.py2
-rw-r--r--tests/test_debug.py2
-rw-r--r--tests/test_ext.py2
-rw-r--r--tests/test_filters.py2
-rw-r--r--tests/test_imports.py2
-rw-r--r--tests/test_inheritance.py2
-rw-r--r--tests/test_lexnparse.py2
-rw-r--r--tests/test_loader.py2
-rw-r--r--tests/test_regression.py2
-rw-r--r--tests/test_security.py2
-rw-r--r--tests/test_tests.py2
-rw-r--r--tests/test_utils.py2
36 files changed, 36 insertions, 36 deletions
diff --git a/jinja2/__init__.py b/jinja2/__init__.py
index 33724bf..de14cc3 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 f5bd314..e58633e 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 6b2212e..0e15d01 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 cab203c..11efd1e 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 de66627..07c21f1 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 38c5376..e29ce56 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 b6cd465..2a4d3d7 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 c9df6dc..c018a33 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 2735dbb..03c63e1 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 0ff995d..e13bc62 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 d2ca32f..ca2914a 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 70882f5..4c79793 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 5668e19..7421914 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 5e0726a..d1a4c38 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 263db90..65ab3ce 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 8c3cd5b..9742a27 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 95268e5..9a3c16a 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 b1462b5..9e00322 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 999540e..bd843b7 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 0f04bdb..b96d309 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 413e7c3..ba526df 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 eaae2b0..1830b1e 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 90a143b..5708144 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 7a60129..42ff840 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 0a865f5..0438008 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 2303da9..22ce1e8 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 3a06a42..79f7830 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 2e85a9a..318a347 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 6759127..a6d5161 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 32e2c68..7746c2d 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 1f8f746..20d2c6d 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 f4ac255..7e12628 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 7d2ad3a..b8c8ac3 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 ff8f2b1..8e4222e 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 03cd26b..0dead3b 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 c261802..2400fb8 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