(self, node)
| 495 | return complex(self.construct_scalar(node)) |
| 496 | |
| 497 | def construct_python_tuple(self, node): |
| 498 | return tuple(self.construct_sequence(node)) |
| 499 | |
| 500 | def find_python_module(self, name, mark): |
| 501 | if not name: |
nothing calls this directly
no test coverage detected