(self, result)
| 282 | |
| 283 | class simplesectsep(ElementRenderer): |
| 284 | def open(self, result): |
| 285 | # Repeat parent simplesect |
| 286 | parent = self.get_first_parent(simplesect) |
| 287 | if parent: |
| 288 | return parent.open(result) |
| 289 | |
| 290 | |
| 291 | class programlisting(ElementRenderer): |
nothing calls this directly
no test coverage detected