MCPcopy Index your code
hub / github.com/RustPython/RustPython / unparse

Function unparse

Lib/ast.py:617–624  ·  view source on GitHub ↗
(ast_obj)

Source from the content-addressed store, hash-verified

615
616
617def unparse(ast_obj):
618 global _Unparser
619 try:
620 unparser = _Unparser()
621 except NameError:
622 from _ast_unparse import Unparser as _Unparser
623 unparser = _Unparser()
624 return unparser.visit(ast_obj)
625
626
627def main(args=None):

Callers

nothing calls this directly

Calls 1

visitMethod · 0.45

Tested by

no test coverage detected