(self)
| 99 | is erroneously allowed (e.g. yield or return at the top level) |
| 100 | """ |
| 101 | def __init__(self): |
| 102 | if sys.version_info >= (3,8): |
| 103 | raise ValueError('DEPRECATED in Python 3.8+') |
| 104 | self.depth = 0 |
| 105 | super().__init__() |
| 106 | |
| 107 | def generic_visit(self, node): |
| 108 | func_types = (ast.FunctionDef, ast.AsyncFunctionDef) |
nothing calls this directly
no outgoing calls
no test coverage detected