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: v2.7.8~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21f2ec6aa406c04e6b00dccdf396b412c598395e;p=python 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 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