[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Andrés Delfino
Change by Andrés Delfino : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Tal Einat added the comment: Thanks for the PR, Andrés! Merged and backported. -- ___ Python tracker ___ ___ Python-bugs-list

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Tal Einat added the comment: 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 --

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Tal Einat added the comment: 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

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Tal Einat added the comment: 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

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +7511 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +7510 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +7509 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33952] doc Fix typo in str.upper() documentation

2018-06-25 Thread Tal Einat
Tal Einat added the comment: 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 -- nosy:

[issue33952] doc Fix typo in str.upper() documentation

2018-06-24 Thread Andrés Delfino
Change by Andrés Delfino : -- keywords: +patch pull_requests: +7504 stage: -> patch review ___ Python tracker ___ ___

[issue33952] doc Fix typo in str.upper() documentation

2018-06-24 Thread Andrés Delfino
New submission from Andrés Delfino : 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. -- assignee: docs@python components: Documentation messages: 320395 nosy: adelfino, docs@python