[Python-checkins] cpython (3.5): Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants

berker.peksag python-checkins at python.org
Fri Apr 1 21:48:45 EDT 2016


https://hg.python.org/cpython/rev/f41d3321007f
changeset:   100834:f41d3321007f
branch:      3.5
parent:      100832:73279e4a1107
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Sat Apr 02 04:48:27 2016 +0300
summary:
  Issue #26679: Fix description of KEY_PPAGE and KEY_NPAGE constants

Patch by Robert Bachmann and SilentGhost.

files:
  Doc/library/curses.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst
--- a/Doc/library/curses.rst
+++ b/Doc/library/curses.rst
@@ -1508,9 +1508,9 @@
 +------------------+-----------+
 | :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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list