summaryrefslogtreecommitdiff
path: root/src/jinja2/nodes.py
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-01-10 13:42:02 -0800
committerDavid Lord <davidism@gmail.com>2020-01-10 13:42:02 -0800
commit51c1c8efa6f4cd3d4eff270f8c3ceb20362af7bb (patch)
tree136e569e5ebbba2d43485aca181b07438eac6412 /src/jinja2/nodes.py
parente492255f270add52d051ef4f8e87899f40e57687 (diff)
downloadjinja2-style.tar.gz
simplify module docstringsstyle
Diffstat (limited to 'src/jinja2/nodes.py')
-rw-r--r--src/jinja2/nodes.py15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/jinja2/nodes.py b/src/jinja2/nodes.py
index 8026543..f0e9e03 100644
--- a/src/jinja2/nodes.py
+++ b/src/jinja2/nodes.py
@@ -1,16 +1,7 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.nodes
- ~~~~~~~~~~~~
-
- This module implements additional nodes derived from the ast base node.
-
- It also provides some node tree helper functions like `in_lineno` and
- `get_nodes` used by the parser and translator in order to normalize
- python and jinja nodes.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
+"""AST nodes generated by the parser for the compiler. Also provides
+some node tree helper functions used by the parser and compiler in order
+to normalize nodes.
"""
import operator
from collections import deque