summaryrefslogtreecommitdiffstats
path: root/contrib/python/Jinja2/py3/jinja2/meta.py
diff options
context:
space:
mode:
authorshadchin <[email protected]>2022-02-10 16:44:39 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:44:39 +0300
commite9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (patch)
tree64175d5cadab313b3e7039ebaa06c5bc3295e274 /contrib/python/Jinja2/py3/jinja2/meta.py
parent2598ef1d0aee359b4b6d5fdd1758916d5907d04f (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'contrib/python/Jinja2/py3/jinja2/meta.py')
-rw-r--r--contrib/python/Jinja2/py3/jinja2/meta.py86
1 files changed, 43 insertions, 43 deletions
diff --git a/contrib/python/Jinja2/py3/jinja2/meta.py b/contrib/python/Jinja2/py3/jinja2/meta.py
index 67a032b6c2e..0057d6eabad 100644
--- a/contrib/python/Jinja2/py3/jinja2/meta.py
+++ b/contrib/python/Jinja2/py3/jinja2/meta.py
@@ -1,36 +1,36 @@
-"""Functions that expose information about templates that might be
-interesting for introspection.
+"""Functions that expose information about templates that might be
+interesting for introspection.
"""
-import typing as t
-
-from . import nodes
-from .compiler import CodeGenerator
-from .compiler import Frame
+import typing as t
+
+from . import nodes
+from .compiler import CodeGenerator
+from .compiler import Frame
+
+if t.TYPE_CHECKING:
+ from .environment import Environment
-if t.TYPE_CHECKING:
- from .environment import Environment
-
class TrackingCodeGenerator(CodeGenerator):
"""We abuse the code generator for introspection."""
- def __init__(self, environment: "Environment") -> None:
- super().__init__(environment, "<introspection>", "<introspection>")
- self.undeclared_identifiers: t.Set[str] = set()
+ def __init__(self, environment: "Environment") -> None:
+ super().__init__(environment, "<introspection>", "<introspection>")
+ self.undeclared_identifiers: t.Set[str] = set()
- def write(self, x: str) -> None:
+ def write(self, x: str) -> None:
"""Don't write."""
- def enter_frame(self, frame: Frame) -> None:
+ def enter_frame(self, frame: Frame) -> None:
"""Remember all undeclared identifiers."""
- super().enter_frame(frame)
-
- for _, (action, param) in frame.symbols.loads.items():
- if action == "resolve" and param not in self.environment.globals:
+ super().enter_frame(frame)
+
+ for _, (action, param) in frame.symbols.loads.items():
+ if action == "resolve" and param not in self.environment.globals:
self.undeclared_identifiers.add(param)
-def find_undeclared_variables(ast: nodes.Template) -> t.Set[str]:
+def find_undeclared_variables(ast: nodes.Template) -> t.Set[str]:
"""Returns a set of all variables in the AST that will be looked up from
the context at runtime. Because at compile time it's not known which
variables will be used depending on the path the execution takes at
@@ -39,7 +39,7 @@ def find_undeclared_variables(ast: nodes.Template) -> t.Set[str]:
>>> from jinja2 import Environment, meta
>>> env = Environment()
>>> ast = env.parse('{% set foo = 42 %}{{ bar + foo }}')
- >>> meta.find_undeclared_variables(ast) == {'bar'}
+ >>> meta.find_undeclared_variables(ast) == {'bar'}
True
.. admonition:: Implementation
@@ -49,16 +49,16 @@ def find_undeclared_variables(ast: nodes.Template) -> t.Set[str]:
:exc:`TemplateAssertionError` during compilation and as a matter of
fact this function can currently raise that exception as well.
"""
- codegen = TrackingCodeGenerator(ast.environment) # type: ignore
+ codegen = TrackingCodeGenerator(ast.environment) # type: ignore
codegen.visit(ast)
return codegen.undeclared_identifiers
-_ref_types = (nodes.Extends, nodes.FromImport, nodes.Import, nodes.Include)
-_RefType = t.Union[nodes.Extends, nodes.FromImport, nodes.Import, nodes.Include]
-
-
-def find_referenced_templates(ast: nodes.Template) -> t.Iterator[t.Optional[str]]:
+_ref_types = (nodes.Extends, nodes.FromImport, nodes.Import, nodes.Include)
+_RefType = t.Union[nodes.Extends, nodes.FromImport, nodes.Import, nodes.Include]
+
+
+def find_referenced_templates(ast: nodes.Template) -> t.Iterator[t.Optional[str]]:
"""Finds all the referenced templates from the AST. This will return an
iterator over all the hardcoded template extensions, inclusions and
imports. If dynamic inheritance or inclusion is used, `None` will be
@@ -73,19 +73,19 @@ def find_referenced_templates(ast: nodes.Template) -> t.Iterator[t.Optional[str]
This function is useful for dependency tracking. For example if you want
to rebuild parts of the website after a layout template has changed.
"""
- template_name: t.Any
-
- for node in ast.find_all(_ref_types):
- template: nodes.Expr = node.template # type: ignore
-
- if not isinstance(template, nodes.Const):
+ template_name: t.Any
+
+ for node in ast.find_all(_ref_types):
+ template: nodes.Expr = node.template # type: ignore
+
+ if not isinstance(template, nodes.Const):
# a tuple with some non consts in there
- if isinstance(template, (nodes.Tuple, nodes.List)):
- for template_name in template.items:
+ if isinstance(template, (nodes.Tuple, nodes.List)):
+ for template_name in template.items:
# something const, only yield the strings and ignore
# non-string consts that really just make no sense
if isinstance(template_name, nodes.Const):
- if isinstance(template_name.value, str):
+ if isinstance(template_name.value, str):
yield template_name.value
# something dynamic in there
else:
@@ -95,16 +95,16 @@ def find_referenced_templates(ast: nodes.Template) -> t.Iterator[t.Optional[str]
yield None
continue
# constant is a basestring, direct template name
- if isinstance(template.value, str):
- yield template.value
+ if isinstance(template.value, str):
+ yield template.value
# a tuple or list (latter *should* not happen) made of consts,
# yield the consts that are strings. We could warn here for
# non string values
- elif isinstance(node, nodes.Include) and isinstance(
- template.value, (tuple, list)
- ):
- for template_name in template.value:
- if isinstance(template_name, str):
+ elif isinstance(node, nodes.Include) and isinstance(
+ template.value, (tuple, list)
+ ):
+ for template_name in template.value:
+ if isinstance(template_name, str):
yield template_name
# something else we don't care about, we could warn here
else: