From 15983ffc5182d0190decb9ce6b2f3663d97a87af Mon Sep 17 00:00:00 2001 From: gossrock Date: Mon, 20 Nov 2017 21:44:20 +0000 Subject: [PATCH] Add LINE and COL definitions to /stdlib/3/curses/__init__.py (#1757) Fixes #1596 --- stdlib/3/curses/__init__.pyi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stdlib/3/curses/__init__.pyi b/stdlib/3/curses/__init__.pyi index 078a6cd3a..ef9f4207d 100644 --- a/stdlib/3/curses/__init__.pyi +++ b/stdlib/3/curses/__init__.pyi @@ -1,6 +1,9 @@ import _curses from _curses import * # noqa: F403 +LINES: int +COLS: int + def initscr() -> _curses._CursesWindow: ... def start_color(): ... def wrapper(func, *args, **kwds): ...