numba.utils

class numba.utils.TypedProperty(ty, doc, default=None)

Defines a class property that does a type check in the setter.

numba.utils.ast2tree(node, include_attrs=True)

Transform a Python AST object into nested tuples and lists.

numba.utils.debugout(*args)

This is a magic function. If you use it in compiled functions, Numba should generate code for displaying the received value.

numba.utils.dump(node, *args, **kws)

Transform a Python AST object into nested tuples and lists, and pretty-print the result.

numba.utils.itercode(code)

Return a generator of byte-offset, opcode, and argument from a byte-code-string

numba.utils.pformat_ast(node, include_attrs=True, **kws)

Transform a Python AST object into nested tuples and lists, and return as a string formatted using pprint.pformat().

numba.utils.process_signature(sigstr, name=None)

Given a signature string consisting of a return type, argument types, and possibly a function name, return a signature object.

Previous topic

numba.translate

Next topic

numba.visitors

This Page