@@ -324,7 +324,7 @@ def mouseinterval(interval: int, /) -> None: ...
324324def mousemask (newmask : int , / ) -> tuple [int , int ]: ...
325325def napms (ms : int , / ) -> int : ...
326326def newpad (nlines : int , ncols : int , / ) -> window : ...
327- def newwin (nlines : int , ncols : int , begin_y : int = ... , begin_x : int = ... , / ) -> window : ...
327+ def newwin (nlines : int , ncols : int , begin_y : int = 0 , begin_x : int = 0 , / ) -> window : ...
328328def nl (flag : bool = True , / ) -> None : ...
329329def nocbreak () -> None : ...
330330def noecho () -> None : ...
@@ -410,7 +410,7 @@ class window: # undocumented
410410 @overload
411411 def box (self ) -> None : ...
412412 @overload
413- def box (self , vertch : _ChType = ... , horch : _ChType = ... ) -> None : ...
413+ def box (self , vertch : _ChType = 0 , horch : _ChType = 0 ) -> None : ...
414414 @overload
415415 def chgat (self , attr : int ) -> None : ...
416416 @overload
@@ -487,9 +487,9 @@ class window: # undocumented
487487 @overload
488488 def insstr (self , y : int , x : int , str : str , attr : int = ...) -> None : ...
489489 @overload
490- def instr (self , n : int = ... ) -> bytes : ...
490+ def instr (self , n : int = 2047 ) -> bytes : ...
491491 @overload
492- def instr (self , y : int , x : int , n : int = ... ) -> bytes : ...
492+ def instr (self , y : int , x : int , n : int = 2047 ) -> bytes : ...
493493 def is_linetouched (self , line : int , / ) -> bool : ...
494494 def is_wintouched (self ) -> bool : ...
495495 def keypad (self , yes : bool , / ) -> None : ...
@@ -523,7 +523,7 @@ class window: # undocumented
523523 @overload
524524 def refresh (self , pminrow : int , pmincol : int , sminrow : int , smincol : int , smaxrow : int , smaxcol : int ) -> None : ...
525525 def resize (self , nlines : int , ncols : int ) -> None : ...
526- def scroll (self , lines : int = ... ) -> None : ...
526+ def scroll (self , lines : int = 1 ) -> None : ...
527527 def scrollok (self , flag : bool ) -> None : ...
528528 def setscrreg (self , top : int , bottom : int , / ) -> None : ...
529529 def standend (self ) -> None : ...
@@ -540,7 +540,7 @@ class window: # undocumented
540540 def syncok (self , flag : bool ) -> None : ...
541541 def syncup (self ) -> None : ...
542542 def timeout (self , delay : int ) -> None : ...
543- def touchline (self , start : int , count : int , changed : bool = ... ) -> None : ...
543+ def touchline (self , start : int , count : int , changed : bool = True ) -> None : ...
544544 def touchwin (self ) -> None : ...
545545 def untouchwin (self ) -> None : ...
546546 @overload
0 commit comments