From: Georg Brandl Date: Tue, 29 Oct 2013 07:10:36 +0000 (+0100) Subject: Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on docs@. X-Git-Tag: v3.4.0b1~485^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ed80b09ed3f808980b827aac85497ee0fd3d3c8;p=thirdparty%2FPython%2Fcpython.git Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on docs@. --- diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index cd1915d03b50..314636e4b48c 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