1
0

picoterm.pyi 331 B

12345678910
  1. def enable_full_buffering_mode() -> None:
  2. """Enable full buffering mode for ASCII drawings (32KB)."""
  3. def split_ansi_escaped_string(s: str) -> list[str]:
  4. """Perform split on ANSI escaped string."""
  5. def wcwidth(c: int) -> int: ...
  6. def wcswidth(s: str) -> int: ...
  7. def sscanf(s: str, fmt: str, out_list: list) -> bool: ...