mirror of
https://github.com/pocketpy/pocketpy
synced 2025-12-06 18:20:17 +00:00
9 lines
273 B
Python
9 lines
273 B
Python
def enable_full_buffering_mode() -> None:
|
|
"""Enable full buffering mode for ASCII drawings (32KB)."""
|
|
|
|
def split_ansi_escaped_string(s: str) -> list[str]:
|
|
"""Perform split on ANSI escaped string."""
|
|
|
|
def wcwidth(c: int) -> int: ...
|
|
def wcswidth(s: str) -> int: ...
|