(self, node)
| 475 | return complex(self.construct_scalar(node)) |
| 476 | |
| 477 | def construct_python_tuple(self, node): |
| 478 | return tuple(self.construct_sequence(node)) |
| 479 | |
| 480 | def find_python_module(self, name, mark): |
| 481 | if not name: |
nothing calls this directly
no test coverage detected