(self, startval=None)
| 570 | for fws, part in self)) |
| 571 | |
| 572 | def reset(self, startval=None): |
| 573 | if startval is None: |
| 574 | startval = [] |
| 575 | self[:] = startval |
| 576 | self._initial_size = 0 |
| 577 | |
| 578 | def is_onlyws(self): |
| 579 | return self._initial_size==0 and (not self or str(self).isspace()) |
no outgoing calls
no test coverage detected