[Python-checkins] r73464 - in python/branches/py3k: Doc/library/curses.rst
georg.brandl
python-checkins at python.org
Wed Jun 17 12:03:59 CEST 2009
Author: georg.brandl
Date: Wed Jun 17 12:03:58 2009
New Revision: 73464
Log:
Merged revisions 73462-73463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73462 | georg.brandl | 2009-06-17 11:36:21 +0200 (Mi, 17 Jun 2009) | 1 line
#6295: clarify blocking behavior of getch().
........
r73463 | georg.brandl | 2009-06-17 11:43:31 +0200 (Mi, 17 Jun 2009) | 1 line
#6255: document PyInt_FromSize_t.
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Doc/library/curses.rst
Modified: python/branches/py3k/Doc/library/curses.rst
==============================================================================
--- python/branches/py3k/Doc/library/curses.rst (original)
+++ python/branches/py3k/Doc/library/curses.rst Wed Jun 17 12:03:58 2009
@@ -793,7 +793,8 @@
Get a character. Note that the integer returned does *not* have to be in ASCII
range: function keys, keypad keys and so on return numbers higher than 256. In
- no-delay mode, -1 is returned if there is no input.
+ no-delay mode, -1 is returned if there is no input, else :func:`getch` waits
+ until a key is pressed.
.. method:: window.getkey([y, x])
More information about the Python-checkins
mailing list