diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-02 01:48:27 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-02 01:48:27 (GMT) |
commit | af8363926aa1cb96483a1777d478491e7415faff (patch) | |
tree | b254b3c3951f75332d273710d11709f3534be59b /Doc/library/curses.rst | |
parent | b31daff1f77c071b36b43bf874befd7c66e55342 (diff) | |
download | cpython-af8363926aa1cb96483a1777d478491e7415faff.zip cpython-af8363926aa1cb96483a1777d478491e7415faff.tar.gz cpython-af8363926aa1cb96483a1777d478491e7415faff.tar.bz2 |
Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants
Patch by Robert Bachmann and SilentGhost.
Diffstat (limited to 'Doc/library/curses.rst')
-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 |