From: Andrew Svetlov Date: Sat, 29 Dec 2012 21:09:32 +0000 (+0200) Subject: Fix docstring in curses (#16782) X-Git-Tag: v2.7.5~109^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14e27d896f5d07eb4f24aee1f76f3cafd66c2b2b;p=thirdparty%2FPython%2Fcpython.git Fix docstring in curses (#16782) --- diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index bd7d5f61cf45..ecf59de37d06 100644 --- a/Lib/curses/__init__.py +++ b/Lib/curses/__init__.py @@ -5,7 +5,7 @@ the package, and perhaps a particular module inside it. import curses from curses import textpad - curses.initwin() + curses.initscr() ... """