2025-08-11 12:24:21 +08:00

5 lines
118 B
Python

__all__ = ["asbytes", "asunicode"]
def asunicode(s: bytes | str) -> str: ...
def asbytes(s: bytes | str) -> str: ...