This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nojhan
Recipients georg.brandl, nojhan
Date 2009-06-17.09:18:30
SpamBayes Score 3.0428168e-05
Marked as misclassified No
Message-id <1245230313.16.0.0482722350238.issue6295@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation of the curses module is not clear on the fact that
getch is blocking by default:
http://docs.python.org/3.0/library/curses.html#curses.window.getch

I suggest the following description instead of the current one:
"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. By default, getch() is blocking and wait indefinitely for a
key press. In nodelay() mode, -1 is returned if there is no input."
History
Date User Action Args
2009-06-17 09:18:34nojhansetrecipients: + nojhan, georg.brandl
2009-06-17 09:18:33nojhansetmessageid: <1245230313.16.0.0482722350238.issue6295@psf.upfronthosting.co.za>
2009-06-17 09:18:31nojhanlinkissue6295 messages
2009-06-17 09:18:30nojhancreate