module documentation

Undocumented

Class ​Native​Environment An environment that renders templates to native Python types.
Class ​Native​Template No class docstring; 1/2 method documented
Class ​Native​Code​Generator A code generator which renders Python types by not adding str() around output nodes.
Function native​_concat No summary
def native_concat(values):
Return a native Python type from the list of compiled nodes. If the result is a single node, its value is returned. Otherwise, the nodes are concatenated as strings. If the result can be parsed with ast.literal_eval, the parsed value is returned. Otherwise, the string is returned.
Parameters
values:t.Iterable[t.Any]Iterable of outputs to concatenate.
Returns
t.Optional[t.Any]Undocumented