(self, text: bytes | bytearray)
| 715 | |
| 716 | @t.overload |
| 717 | def edit(self, text: bytes | bytearray) -> bytes | None: ... |
| 718 | |
| 719 | class="cm"># We cannot know whether or not the type expected is str or bytes when None |
| 720 | class="cm"># is passed, so str is returned as that was what was done before. |