(ast_obj)
| 629 | |
| 630 | |
| 631 | def unparse(ast_obj): |
| 632 | global _Unparser |
| 633 | try: |
| 634 | unparser = _Unparser() |
| 635 | except NameError: |
| 636 | from _ast_unparse import Unparser as _Unparser |
| 637 | unparser = _Unparser() |
| 638 | return unparser.visit(ast_obj) |
| 639 | |
| 640 | |
| 641 | def main(args=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…