(self, node)
| 371 | pairs.append((key, value)) |
| 372 | |
| 373 | def construct_yaml_set(self, node): |
| 374 | data = set() |
| 375 | yield data |
| 376 | value = self.construct_mapping(node) |
| 377 | data.update(value) |
| 378 | |
| 379 | def construct_yaml_str(self, node): |
| 380 | value = self.construct_scalar(node) |
nothing calls this directly
no test coverage detected