(self, s: bytes)
| 125 | self._chunks = chunks |
| 126 | |
| 127 | def __call__(self, s: bytes) -> None: |
| 128 | check_type("write()", s, bytes) |
| 129 | self._write(s) |
| 130 | self._chunks.append(len(s)) |
| 131 | |
| 132 | |
| 133 | class GuardedIterator: |
nothing calls this directly
no test coverage detected