Add LINE and COL definitions to /stdlib/3/curses/__init__.py (#1757)

Fixes #1596
This commit is contained in:
gossrock
2017-11-20 21:44:20 +00:00
committed by Jelle Zijlstra
parent ec2cb8e44f
commit 15983ffc51

View File

@@ -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): ...