(n: Node)
| 1309 | # Tuple[Node, Node] by simply calling repr() on it. Node's __repr__ is |
| 1310 | # implemented cooperatively to allow this. |
| 1311 | def node_repr(n: Node): |
| 1312 | return namespace.create_name(n.name, n) |
| 1313 | |
| 1314 | @contextmanager |
| 1315 | def override_node_repr(graph: Graph): |
nothing calls this directly
no test coverage detected