From 21f2ec6aa406c04e6b00dccdf396b412c598395e Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 29 Oct 2013 08:10:36 +0100 Subject: [PATCH] Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on docs@. --- Doc/library/curses.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index 72711e1ae0..642d25b0a0 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -380,7 +380,7 @@ The module :mod:`curses` defines the following functions: is to be displayed. -.. function:: newwin(begin_y, begin_x) +.. function:: newwin(nlines, ncols) newwin(nlines, ncols, begin_y, begin_x) Return a new window, whose left-upper corner is at ``(begin_y, begin_x)``, and -- 2.50.1