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: issue in a sentence in py_compile
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: SeanChao, ZackerySpytz, benjamin.peterson, docs@python, miss-islington
Priority: normal Keywords: patch

Created on 2020-09-05 02:53 by SeanChao, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22110 merged ZackerySpytz, 2020-09-05 10:50
PR 22117 merged miss-islington, 2020-09-06 03:39
PR 22118 merged benjamin.peterson, 2020-09-06 03:40
Messages (4)
msg376424 - (view) Author: Sean Chao (SeanChao) Date: 2020-09-05 02:53
I think in https://docs.python.org/3.10/library/py_compile.html#py_compile.compile
the sentence:
> If dfile is specified, it is used as the name of the source file in error messages when instead of file.
should not have the 'when'.
msg376453 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-09-06 03:39
New changeset 5371a464ce88ffc88f3bb95cfd86f355b7d02953 by Zackery Spytz in branch 'master':
closes bpo-41723: Fix an error in the py_compile documentation. (GH-22110)
https://github.com/python/cpython/commit/5371a464ce88ffc88f3bb95cfd86f355b7d02953
msg376454 - (view) Author: miss-islington (miss-islington) Date: 2020-09-06 03:47
New changeset 4e581d64b8aff3e2eda99b12f080c877bb78dfca by Miss Islington (bot) in branch '3.8':
closes bpo-41723: Fix an error in the py_compile documentation. (GH-22110)
https://github.com/python/cpython/commit/4e581d64b8aff3e2eda99b12f080c877bb78dfca
msg376456 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-09-06 03:54
New changeset b6d2acb1b1a21f857c17cfb6e0e97a7b8bdc0171 by Benjamin Peterson in branch '3.9':
[3.9] closes bpo-41723: Fix an error in the py_compile documentation. (GH-22118)
https://github.com/python/cpython/commit/b6d2acb1b1a21f857c17cfb6e0e97a7b8bdc0171
History
Date User Action Args
2022-04-11 14:59:35adminsetgithub: 85889
2020-09-06 03:54:50benjamin.petersonsetmessages: + msg376456
2020-09-06 03:47:21miss-islingtonsetmessages: + msg376454
2020-09-06 03:40:36benjamin.petersonsetpull_requests: + pull_request21202
2020-09-06 03:39:42miss-islingtonsetnosy: + miss-islington

pull_requests: + pull_request21201
2020-09-06 03:39:36benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg376453

resolution: fixed
stage: patch review -> resolved
2020-09-05 10:50:48ZackerySpytzsetkeywords: + patch
nosy: + ZackerySpytz

pull_requests: + pull_request21194
stage: patch review
2020-09-05 02:53:13SeanChaocreate