[Python-checkins] cpython (3.3): Fix wrong signature for two-argument newwin(). Found by Jacqueline Leykam on

georg.brandl python-checkins at python.org
Tue Oct 29 08:18:50 CET 2013


http://hg.python.org/cpython/rev/8e580e6a9318
changeset:   86728:8e580e6a9318
branch:      3.3
user:        Georg Brandl <georg at python.org>
date:        Tue Oct 29 08:10:36 2013 +0100
summary:
  Fix wrong signature for two-argument newwin().  Found by Jacqueline Leykam on docs at .

files:
  Doc/library/curses.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
--- a/Doc/library/curses.rst
+++ b/Doc/library/curses.rst
@@ -377,7 +377,7 @@
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list