(co)
| 923 | if __name__ == "__main__": |
| 924 | |
| 925 | def parse_test(co): |
| 926 | from xdis import IS_PYPY, PYTHON_VERSION_TRIPLE |
| 927 | |
| 928 | ast = python_parser(PYTHON_VERSION_TRIPLE, co, showasm=True, is_pypy=IS_PYPY) |
| 929 | print(ast) |
| 930 | return |
| 931 | |
| 932 | parse_test(parse_test.__code__) |
no test coverage detected