(self)
| 299 | return rv[0] |
| 300 | |
| 301 | def dump_lines(self): |
| 302 | yield 'BEGIN:{}'.format(self.name) |
| 303 | yield from self.props |
| 304 | for c in self.subcomponents: |
| 305 | yield from c.dump_lines() |
| 306 | yield 'END:{}'.format(self.name) |
| 307 | |
| 308 | def __delitem__(self, key): |
| 309 | prefix = ('{}:'.format(key), '{};'.format(key)) |
no outgoing calls