[issue26679] curses: Descripton of KEY_NPAGE and KEY_PPAGE inverted

2016-04-01 Thread Berker Peksag
Berker Peksag added the comment: Thanks, Robert and SilentGhost. I verified the patch with the following script: import curses def main(stdscr): while True: c = stdscr.getch() if c == curses.KEY_PPAGE: stdscr.addstr('Page Up') elif c ==

[issue26679] curses: Descripton of KEY_NPAGE and KEY_PPAGE inverted

2016-04-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset f41d3321007f by Berker Peksag in branch '3.5': Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants https://hg.python.org/cpython/rev/f41d3321007f New changeset 23d986228c6b by Berker Peksag in branch 'default': Issue #26679: Fix

[issue26679] curses: Descripton of KEY_NPAGE and KEY_PPAGE inverted

2016-04-01 Thread SilentGhost
SilentGhost added the comment: Here is the patch. -- nosy: +SilentGhost stage: -> patch review type: enhancement -> behavior Added file: http://bugs.python.org/file42344/issue26679.diff ___ Python tracker

[issue26679] curses: Descripton of KEY_NPAGE and KEY_PPAGE inverted

2016-03-31 Thread Robert Bachmann
New submission from Robert Bachmann: The table on lists: __ Page Up KEY_NPAGE Page Down KEY_PPAGE __ it should be vice versa. -- assignee: docs@python components: Documentation