(self)
| 135 | self.content_len -= i |
| 136 | |
| 137 | def full(self): |
| 138 | # type: () -> bool |
| 139 | # Should only be true when all missing data was filled up, |
| 140 | # (or there never was missing data) |
| 141 | return bool(self) |
| 142 | |
| 143 | def clear(self): |
| 144 | # type: () -> None |