(node)
| 96 | return globs, nonlocals |
| 97 | |
| 98 | def find_none(node): |
| 99 | for n in node: |
| 100 | if isinstance(n, SyntaxTree): |
| 101 | if n not in ('return_stmt', 'return_if_stmt'): |
| 102 | if find_none(n): |
| 103 | return True |
| 104 | elif n.kind == 'LOAD_CONST' and n.pattr is None: |
| 105 | return True |
| 106 | return False |
| 107 | |
| 108 | def flatten_list(node): |
| 109 | """ |
no outgoing calls
no test coverage detected