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: "5. The import system" grammatical error
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Daniel.U..Thibault, barry, docs@python
Priority: normal Keywords: patch

Created on 2017-11-03 17:19 by Daniel.U..Thibault, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4257 merged barry, 2017-11-03 17:36
Messages (3)
msg305489 - (view) Author: Daniel U. Thibault (Daniel.U..Thibault) Date: 2017-11-03 17:19
https://docs.python.org/3/reference/import.html#importsystem
"Other mechanisms for invoking the import system (such as importlib.import_module()) may choose to subvert __import__() and use its own solution to implement import semantics."
should be
"Other mechanisms for invoking the import system (such as importlib.import_module()) may choose to subvert __import__() and use their own solution to implement import semantics."
msg305491 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2017-11-03 17:37
Re-reading the paragraph now, it also parsed weirdly for me.  See the linked PR for a suggested improvement, along with your change.

Thanks!
msg305506 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2017-11-03 20:45
New changeset 93952f881500053057c2e08c4b253ac61233d7db by Barry Warsaw in branch 'master':
Fix a grammatical problem and reword for clarity. (#4257)
https://github.com/python/cpython/commit/93952f881500053057c2e08c4b253ac61233d7db
History
Date User Action Args
2022-04-11 14:58:54adminsetgithub: 76117
2017-11-03 20:46:04barrysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-11-03 20:45:48barrysetmessages: + msg305506
2017-11-03 17:37:24barrysetmessages: + msg305491
2017-11-03 17:36:11barrysetkeywords: + patch
stage: patch review
pull_requests: + pull_request4219
2017-11-03 17:29:28barrysetnosy: + barry

versions: + Python 3.7, - Python 3.8
2017-11-03 17:19:46Daniel.U..Thibaultcreate