Add missing stub for _CursesWindow.noutrefresh (#5928)

This commit is contained in:
Jeremy Nation
2021-08-14 17:55:43 -04:00
committed by GitHub
parent c83a455d67
commit 0e62c8ab06

View File

@@ -490,8 +490,11 @@ class _CursesWindow:
def mvwin(self, new_y: int, new_x: int) -> None: ...
def nodelay(self, yes: bool) -> None: ...
def notimeout(self, yes: bool) -> None: ...
@overload
def noutrefresh(self) -> None: ...
@overload
def noutrefresh(self, pminrow: int, pmincol: int, sminrow: int, smincol: int, smaxrow: int, smaxcol: int) -> None: ...
@overload
def overlay(self, destwin: _CursesWindow) -> None: ...
@overload
def overlay(