(self, suffix, node)
| 522 | return self.find_python_name(suffix, node.start_mark) |
| 523 | |
| 524 | def construct_python_module(self, suffix, node): |
| 525 | value = self.construct_scalar(node) |
| 526 | if value: |
| 527 | raise ConstructorError("while constructing a Python module", node.start_mark, |
| 528 | "expected the empty value, but found %r" % value.encode('utf-8'), |
| 529 | node.start_mark) |
| 530 | return self.find_python_module(suffix, node.start_mark) |
| 531 | |
| 532 | class classobj: pass |
| 533 |
nothing calls this directly
no test coverage detected