For loop unpacking and some other things like multiple arguments for subscripts. Like for Namectx specifies if the tuple is used for loading the names or storing.
Node type:
Literal
classjinja2.nodes.MarkSafe(expr)
Mark the wrapped expression as safe (wrap it as Markup).
Node type:
Expr
classjinja2.nodes.MarkSafeIfAutoescape(expr)
Mark the wrapped expression as safe (wrap it as Markup) but only if autoescaping is active.
New in version 2.5.
Node type:
Expr
classjinja2.nodes.Name(name, ctx)
Looks up a name or stores a value in a name. The ctx of the node can be one of the following values:
store: store a value in the name
load: load that name
param: like store but if the name was defined as function parameter.
Node type:
Expr
classjinja2.nodes.Slice(start, stop, step)
Represents a slice object. This must only be used as argument for Subscript.