diff --git a/stdlib/2and3/curses/__init__.pyi b/stdlib/2and3/curses/__init__.pyi index c327c7803..e6c00da43 100644 --- a/stdlib/2and3/curses/__init__.pyi +++ b/stdlib/2and3/curses/__init__.pyi @@ -3,7 +3,12 @@ from typing import TypeVar, Callable, Any _T = TypeVar('_T') +# available after calling `curses.initscr()` LINES: int COLS: int +# available after calling `curses.start_color()` +COLORS: int +COLOR_PAIRS: int + def wrapper(func: Callable[..., _T], *arg: Any, **kwds: Any) -> _T: ...