(fullmodule, path, fname, source, tree, inpackage)
| 266 | |
| 267 | |
| 268 | def _create_tree(fullmodule, path, fname, source, tree, inpackage): |
| 269 | mbrowser = _ModuleBrowser(fullmodule, path, fname, tree, inpackage) |
| 270 | mbrowser.visit(ast.parse(source)) |
| 271 | return mbrowser.tree |
| 272 | |
| 273 | |
| 274 | def _main(): |
no test coverage detected
searching dependent graphs…