diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-29 23:09:08 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-29 23:09:08 +0200 |
commit | f0724e7695ac427d64f68c785a2da8abd2ec01f5 (patch) | |
tree | 93dc2c20a877cb4784e41d865cd4c27bae47dcb3 | |
parent | ff2840a76f04c8846e8ad5b7e8379998ab3e87a6 (diff) | |
parent | 2d8298dcd2ea4cbac7ca2fab03f840cb1003a8b4 (diff) | |
download | cpython-git-f0724e7695ac427d64f68c785a2da8abd2ec01f5.tar.gz |
Fix docstring in curses (#16782)
-rw-r--r-- | Lib/curses/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py index 7bfa6673d7..47378741ac 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() ... """ |