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: Don't describe try's else clause in a footnote
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, adelfino, docs@python, miss-islington
Priority: normal Keywords: patch

Created on 2018-05-30 19:39 by adelfino, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7252 merged adelfino, 2018-05-30 19:40
PR 10467 merged miss-islington, 2018-11-11 19:34
PR 10468 merged miss-islington, 2018-11-11 19:34
PR 10469 merged adelfino, 2018-11-11 19:56
Messages (7)
msg318205 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-05-30 19:39
This behavior has not changed in 11 years so I think it's safe to describe the "else" clause along the rest of the "try" clause.

Attached PR fixes this.
msg329678 - (view) Author: miss-islington (miss-islington) Date: 2018-11-11 19:33
New changeset b086c8afdb8c862011e3e27d4c8f6833749f2c56 by Miss Islington (bot) (Andrés Delfino) in branch 'master':
bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252)
https://github.com/python/cpython/commit/b086c8afdb8c862011e3e27d4c8f6833749f2c56
msg329679 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2018-11-11 19:43
Just need a manual backport to 2.7, which I'm not doing :) 

If no one is motivated enough to backport to 2.7, I'm fine with that. Otherwise this issue can be closed.
msg329680 - (view) Author: miss-islington (miss-islington) Date: 2018-11-11 19:43
New changeset 7d7ff672dfe93a50053166798cdc0fbc86ea63e3 by Miss Islington (bot) in branch '3.7':
bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252)
https://github.com/python/cpython/commit/7d7ff672dfe93a50053166798cdc0fbc86ea63e3
msg329681 - (view) Author: miss-islington (miss-islington) Date: 2018-11-11 19:44
New changeset 3f6a0a292e12f737448a11660da0c880e8f972be by Miss Islington (bot) in branch '3.6':
bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252)
https://github.com/python/cpython/commit/3f6a0a292e12f737448a11660da0c880e8f972be
msg329682 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-11-11 19:46
I'm doing the 2.7 backport right now :)
msg329683 - (view) Author: miss-islington (miss-islington) Date: 2018-11-11 20:09
New changeset fb8eb2c2776efb34523e0a616c6f845a6b975e38 by Miss Islington (bot) (Andrés Delfino) in branch '2.7':
[2.7] bpo-33699: Describe try's else clause with the rest of the try clause (GH-7252) (GH-10469)
https://github.com/python/cpython/commit/fb8eb2c2776efb34523e0a616c6f845a6b975e38
History
Date User Action Args
2022-04-11 14:59:01adminsetgithub: 77880
2018-11-11 20:09:06miss-islingtonsetmessages: + msg329683
2018-11-11 19:56:25adelfinosetpull_requests: + pull_request9740
2018-11-11 19:46:24adelfinosetmessages: + msg329682
2018-11-11 19:44:34miss-islingtonsetmessages: + msg329681
2018-11-11 19:43:55miss-islingtonsetmessages: + msg329680
2018-11-11 19:43:15Mariattasetstatus: open -> closed

nosy: + Mariatta
messages: + msg329679

resolution: fixed
stage: patch review -> resolved
2018-11-11 19:34:12miss-islingtonsetpull_requests: + pull_request9739
2018-11-11 19:34:03miss-islingtonsetpull_requests: + pull_request9738
2018-11-11 19:33:54miss-islingtonsetnosy: + miss-islington
messages: + msg329678
2018-05-30 19:40:33adelfinosetkeywords: + patch
stage: patch review
pull_requests: + pull_request6881
2018-05-30 19:39:42adelfinocreate