Skip to content

Commit

Permalink
Bump up the copyright to 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jan 7, 2017
1 parent b81a8a3 commit bbe0a41
Show file tree
Hide file tree
Showing 36 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion jinja2/__init__.py
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion jinja2/bccache.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/compiler.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/constants.py
Expand Up @@ -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.
"""

Expand Down
2 changes: 1 addition & 1 deletion jinja2/debug.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/defaults.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/environment.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/exceptions.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/ext.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/filters.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/lexer.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/loaders.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/meta.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/nodes.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/optimizer.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/parser.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/runtime.py
Expand Up @@ -5,7 +5,7 @@
Runtime helpers.
:copyright: (c) 2010 by the Jinja Team.
:copyright: (c) 2017 by the Jinja Team.
:license: BSD.
"""
import sys
Expand Down
2 changes: 1 addition & 1 deletion jinja2/sandbox.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/tests.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/utils.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jinja2/visitor.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bytecode_cache.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_core_tags.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_debug.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ext.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_filters.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_imports.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_inheritance.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_lexnparse.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_loader.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_regression.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_security.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_tests.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Expand Up @@ -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
Expand Down

0 comments on commit bbe0a41

Please sign in to comment.