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: doc Fix typo in str.upper() documentation
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: adelfino, docs@python, taleinat
Priority: normal Keywords: patch

Created on 2018-06-25 02:36 by adelfino, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7898 merged adelfino, 2018-06-25 02:38
PR 7903 merged miss-islington, 2018-06-25 10:35
PR 7904 merged miss-islington, 2018-06-25 10:37
PR 7905 merged taleinat, 2018-06-25 10:41
Messages (6)
msg320395 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-06-25 02:36
Doc says:

Note that str.upper().isupper() might be False if s...

Should say:

Note that s.upper().isupper() might be False if s...

PR fixes this.
msg320406 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-06-25 10:34
New changeset 4a6e746079441d18c30e3c4d014f106faaf7792f by Tal Einat (Andrés Delfino) in branch 'master':
bpo-33952: Fix typo in str.upper() documentation (GH-7898)
https://github.com/python/cpython/commit/4a6e746079441d18c30e3c4d014f106faaf7792f
msg320408 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-06-25 10:42
New changeset 80f1a908a87e55c318776fb8e6f8c21d8a8664ef by Tal Einat (Miss Islington (bot)) in branch '3.7':
bpo-33952: Fix typo in str.upper() documentation (GH-7898) (GH-7903)
https://github.com/python/cpython/commit/80f1a908a87e55c318776fb8e6f8c21d8a8664ef
msg320409 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-06-25 10:44
New changeset ac5a6e35ef4a73846136804fff924760ec67ebbd by Tal Einat (Miss Islington (bot)) in branch '3.6':
bpo-33952: Fix typo in str.upper() documentation (GH-7898) (GH-7904)
https://github.com/python/cpython/commit/ac5a6e35ef4a73846136804fff924760ec67ebbd
msg320410 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-06-25 10:47
New changeset 78209734a0ecd1567f819d95314b1c7c9b26f48a by Tal Einat in branch '2.7':
[2.7] bpo-33952: Fix typo in str.upper() documentation (GH-7898) (GH-7905)
https://github.com/python/cpython/commit/78209734a0ecd1567f819d95314b1c7c9b26f48a
msg320411 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-06-25 10:48
Thanks for the PR, Andrés! Merged and backported.
History
Date User Action Args
2022-04-11 14:59:02adminsetgithub: 78133
2018-06-25 19:33:18adelfinosetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-06-25 10:48:36taleinatsetmessages: + msg320411
2018-06-25 10:47:26taleinatsetmessages: + msg320410
2018-06-25 10:44:18taleinatsetmessages: + msg320409
2018-06-25 10:42:22taleinatsetmessages: + msg320408
2018-06-25 10:41:45taleinatsetpull_requests: + pull_request7511
2018-06-25 10:37:32miss-islingtonsetpull_requests: + pull_request7510
2018-06-25 10:35:40miss-islingtonsetpull_requests: + pull_request7509
2018-06-25 10:34:33taleinatsetnosy: + taleinat
messages: + msg320406
2018-06-25 02:38:02adelfinosetkeywords: + patch
stage: patch review
pull_requests: + pull_request7504
2018-06-25 02:36:11adelfinocreate