module documentation

Undocumented

Class NativeCodeGenerator A code generator which renders Python types by not adding ``str()`` around output nodes.
Class NativeEnvironment An environment that renders templates to native Python types.
Class NativeTemplate No class docstring; 1/2 method documented
Function native_concat 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 :func:`ast...
def native_concat(values): (source)

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 :func:`ast.literal_eval`, the parsed value is returned. Otherwise, the string is returned. :param values: Iterable of outputs to concatenate.

Parameters
values:t.Iterable[t.Any]Undocumented
Returns
t.Optional[t.Any]Undocumented