diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-02 01:48:46 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-02 01:48:46 (GMT) |
commit | 1862bb27698987d2b38f81c0e9459df4bf897139 (patch) | |
tree | abc91390dc3c2fae95f3c2b63e6cade30773bbaf | |
parent | 40d38e19a1401f738b5ed0921182358ae2121010 (diff) | |
parent | af8363926aa1cb96483a1777d478491e7415faff (diff) | |
download | cpython-1862bb27698987d2b38f81c0e9459df4bf897139.zip cpython-1862bb27698987d2b38f81c0e9459df4bf897139.tar.gz cpython-1862bb27698987d2b38f81c0e9459df4bf897139.tar.bz2 |
Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants
Patch by Robert Bachmann and SilentGhost.
-rw-r--r-- | Doc/library/curses.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index e8dfd83..144f7f8 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1508,9 +1508,9 @@ keys); also, the following keypad mappings are standard: +------------------+-----------+ | :kbd:`End` | KEY_END | +------------------+-----------+ -| :kbd:`Page Up` | KEY_NPAGE | +| :kbd:`Page Up` | KEY_PPAGE | +------------------+-----------+ -| :kbd:`Page Down` | KEY_PPAGE | +| :kbd:`Page Down` | KEY_NPAGE | +------------------+-----------+ The following table lists characters from the alternate character set. These are |