Simple visitor generating strings to compare ASTs by content.
(node: ast.AST)
| 173 | |
| 174 | |
| 175 | def stringify_ast(node: ast.AST) -> Iterator[str]: |
| 176 | """Simple visitor generating strings to compare ASTs by content.""" |
| 177 | return _stringify_ast(node, []) |
| 178 | |
| 179 | |
| 180 | def _stringify_ast_with_new_parent( |
no test coverage detected