(self, n: int)
| 88 | return self.write(data) |
| 89 | |
| 90 | def write_mpint2(self, n: int) -> 'WriteBuf': |
| 91 | # NOTE: Section 5 @ https://www.ietf.org/rfc/rfc4251.txt |
| 92 | data = self._create_mpint(n) |
| 93 | return self.write_string(data) |
| 94 | |
| 95 | def write_line(self, v: Union[bytes, str]) -> 'WriteBuf': |
| 96 | if not isinstance(v, bytes): |