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 berker.peksag
Recipients Robert Bachmann, SilentGhost, berker.peksag, docs@python, python-dev
Date 2016-04-02.01:50:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459561838.66.0.943453023172.issue26679@psf.upfronthosting.co.za>
In-reply-to
Content
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 == curses.KEY_NPAGE:
            stdscr.addstr('Page Down')
        else:
            stdscr.addstr('Another key')

curses.wrapper(main)
History
Date User Action Args
2016-04-02 01:50:38berker.peksagsetrecipients: + berker.peksag, SilentGhost, docs@python, python-dev, Robert Bachmann
2016-04-02 01:50:38berker.peksagsetmessageid: <1459561838.66.0.943453023172.issue26679@psf.upfronthosting.co.za>
2016-04-02 01:50:38berker.peksaglinkissue26679 messages
2016-04-02 01:50:38berker.peksagcreate