From 1ed80b09ed3f808980b827aac85497ee0fd3d3c8 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 cd1915d03b5..314636e4b48 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -377,7 +377,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