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: email.message_from_binary_file documentation is broken
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, jribbens
Priority: normal Keywords: patch

Created on 2018-07-16 11:39 by jribbens, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 8297 merged jribbens, 2018-07-16 11:50
PR 8298 merged miss-islington, 2018-07-16 17:21
PR 8299 merged miss-islington, 2018-07-16 17:21
Messages (5)
msg321733 - (view) Author: Jon Ribbens (jribbens) * Date: 2018-07-16 11:39
The documentation for email.message_from_binary_file is missing a line-continuation backslash at the end of the `.. function::` line which means the output formatting is mangled and it has no permalink.
msg321748 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-07-16 17:19
New changeset c9265c1534b7e62bb9b15460d0420c0c3bb57ff9 by Berker Peksag (Jon Ribbens) in branch 'master':
bpo-34124: Fix markup of message_from_binary_file() signature (GH-8297)
https://github.com/python/cpython/commit/c9265c1534b7e62bb9b15460d0420c0c3bb57ff9
msg321753 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-07-16 18:43
New changeset 43c2fabb2fe7760be462e008b39169cf16c28b4c by Berker Peksag (Miss Islington (bot)) in branch '3.7':
bpo-34124: Fix markup of message_from_binary_file() signature (GH-8297)
https://github.com/python/cpython/commit/43c2fabb2fe7760be462e008b39169cf16c28b4c
msg321760 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-07-16 19:41
New changeset f1ab9cac909449ad85595245fa49b8660214cd0e by Berker Peksag (Miss Islington (bot)) in branch '3.6':
bpo-34124: Fix markup of message_from_binary_file() signature (GH-8297)
https://github.com/python/cpython/commit/f1ab9cac909449ad85595245fa49b8660214cd0e
msg321762 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2018-07-16 19:42
Thanks for the report and for the patch, Jon.
History
Date User Action Args
2022-04-11 14:59:03adminsetgithub: 78305
2018-07-16 19:42:32berker.peksagsetstatus: open -> closed
resolution: fixed
messages: + msg321762

stage: patch review -> resolved
2018-07-16 19:41:55berker.peksagsetmessages: + msg321760
2018-07-16 18:43:46berker.peksagsetmessages: + msg321753
2018-07-16 17:21:57miss-islingtonsetpull_requests: + pull_request7833
2018-07-16 17:21:23miss-islingtonsetpull_requests: + pull_request7832
2018-07-16 17:19:47berker.peksagsetnosy: + berker.peksag
messages: + msg321748
2018-07-16 15:03:00berker.peksagsettype: compile error -> behavior
2018-07-16 11:50:35jribbenssetkeywords: + patch
stage: patch review
pull_requests: + pull_request7831
2018-07-16 11:39:16jribbenscreate