(
text: bytes | bytearray,
editor: str | None = None,
env: cabc.Mapping[str, str] | None = None,
require_save: bool = False,
extension: str = ".txt",
)
| 754 | |
| 755 | @t.overload |
| 756 | def edit( |
| 757 | text: bytes | bytearray, |
| 758 | editor: str | None = None, |
| 759 | env: cabc.Mapping[str, str] | None = None, |
| 760 | require_save: bool = False, |
| 761 | extension: str = ".txt", |
| 762 | ) -> bytes | None: ... |
| 763 | |
| 764 | |
| 765 | @t.overload |
nothing calls this directly
no test coverage detected
searching dependent graphs…