diff options
Diffstat (limited to 'src/jinja2/parser.py')
-rw-r--r-- | src/jinja2/parser.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/jinja2/parser.py b/src/jinja2/parser.py index 1d9fd91..d588106 100644 --- a/src/jinja2/parser.py +++ b/src/jinja2/parser.py @@ -1,13 +1,5 @@ # -*- coding: utf-8 -*- -""" - jinja2.parser - ~~~~~~~~~~~~~ - - Implements the template parser. - - :copyright: (c) 2017 by the Jinja Team. - :license: BSD, see LICENSE for more details. -""" +"""Parse tokens from the lexer into nodes for the compiler.""" from . import nodes from ._compat import imap from .exceptions import TemplateAssertionError |