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.

classification
Title: curses online documentation typo
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Mariatta Nosy List: Jim Fasarakis-Hilliard, Mariatta, McSinyx, docs@python
Priority: normal Keywords:

Created on 2017-03-20 02:52 by McSinyx, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 730 merged Mariatta, 2017-03-20 03:34
PR 731 merged Mariatta, 2017-03-20 03:49
PR 732 merged Mariatta, 2017-03-20 03:49
PR 733 merged Mariatta, 2017-03-20 03:50
Messages (8)
msg289868 - (view) Author: Nguyễn Gia Phong (McSinyx) Date: 2017-03-20 02:52
I think there is a typo in curses online documentation about key constants:

https://docs.python.org/3.7/library/curses.html#constants

The key KEY_SEXIT is described as `Shifted Dxit' while I think that should be `Shifted Exit'.
msg289869 - (view) Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * Date: 2017-03-20 03:37
Nice catch, that's a typo indeed. If you'd like, submit a PR [see https://docs.python.org/devguide/#quick-start] to address this.
msg289870 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-20 03:40
Thanks for the report, Raphael.
And thanks Jim, I made a PR just as you commented :)
msg289872 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-20 03:59
Typo fixed and backported into 2.7, 3.5 and 3.6.
Thanks :)
msg290133 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-24 20:18
New changeset 7cc071c96b95e7422f64cb436d547c952e0ca52f by Mariatta in branch '3.5':
bpo-29856: Fix typo in curses documentation (GH-730) (GH-732)
https://github.com/python/cpython/commit/7cc071c96b95e7422f64cb436d547c952e0ca52f
msg290134 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-24 20:18
New changeset 91f79db02acb9f82c738bb0b2f7bfc3260b90930 by Mariatta in branch '2.7':
bpo-29856: Fix typo in curses documentation (GH-730) (GH-733)
https://github.com/python/cpython/commit/91f79db02acb9f82c738bb0b2f7bfc3260b90930
msg290135 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-24 20:19
New changeset d1f566f6bddc67e9870eaa75ae477208b9a199be by Mariatta in branch '3.6':
bpo-29856: Fix typo in curses documentation (GH-730) (GH-731)
https://github.com/python/cpython/commit/d1f566f6bddc67e9870eaa75ae477208b9a199be
msg290136 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-24 20:19
New changeset 64508780d72769e4c7afc67a511c057261c578f6 by Mariatta in branch 'master':
bpo-29856: Fix typo in curses documentation (GH-730)
https://github.com/python/cpython/commit/64508780d72769e4c7afc67a511c057261c578f6
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74042
2017-03-24 20:19:12Mariattasetmessages: + msg290136
2017-03-24 20:19:04Mariattasetmessages: + msg290135
2017-03-24 20:18:58Mariattasetmessages: + msg290134
2017-03-24 20:18:51Mariattasetmessages: + msg290133
2017-03-20 03:59:49Mariattasetstatus: open -> closed
resolution: fixed
messages: + msg289872

stage: patch review -> resolved
2017-03-20 03:50:14Mariattasetpull_requests: + pull_request647
2017-03-20 03:49:58Mariattasetpull_requests: + pull_request646
2017-03-20 03:49:45Mariattasetpull_requests: + pull_request645
2017-03-20 03:40:54Mariattasetversions: + Python 2.7, Python 3.5, Python 3.6
nosy: + Mariatta

messages: + msg289870

assignee: docs@python -> Mariatta
stage: patch review
2017-03-20 03:37:56Jim Fasarakis-Hilliardsetnosy: + Jim Fasarakis-Hilliard
messages: + msg289869
2017-03-20 03:34:34Mariattasetpull_requests: + pull_request644
2017-03-20 02:52:31McSinyxcreate