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: entry points singular?
Type: Stage: resolved
Components: Documentation Versions: Python 3.11, Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, eric.smith, miss-islington, rffontenelle
Priority: normal Keywords: easy, patch

Created on 2021-11-06 23:05 by rffontenelle, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29461 merged rffontenelle, 2021-11-08 04:52
PR 29463 merged miss-islington, 2021-11-08 06:03
Messages (5)
msg405888 - (view) Author: Rafael Fontenelle (rffontenelle) * Date: 2021-11-06 23:05
whatsnew/3.10 on importlib.metadata has the following paragraph:

"importlib.metadata entry points now provides a nicer experience for selecting entry points by group and name through a new importlib.metadata.EntryPoints class. See the Compatibility Note in the docs for more info on the deprecation and usage."

In the above paragraph should "provides" -> "provide", or "entry points" is somehow considered singular?

[1] https://docs.python.org/pt-br/3/whatsnew/3.10.html#importlib-metadata
msg405902 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-11-07 13:19
I think “provide” would be better.
msg405925 - (view) Author: miss-islington (miss-islington) Date: 2021-11-08 06:03
New changeset 19b107e9b52dbd73f4c52adcb91e8185a53b45ae by Rafael Fontenelle in branch 'main':
bpo-45741: docs: fix plural (GH-29461)
https://github.com/python/cpython/commit/19b107e9b52dbd73f4c52adcb91e8185a53b45ae
msg405927 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-11-08 06:32
New changeset 77afb76942ea7067d74d9c07fb4da6f5f23ad2f5 by Miss Islington (bot) in branch '3.10':
bpo-45741: docs: fix plural (GH-29461) (GH-29463)
https://github.com/python/cpython/commit/77afb76942ea7067d74d9c07fb4da6f5f23ad2f5
msg405928 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-11-08 06:33
Thanks for your contribution!
History
Date User Action Args
2022-04-11 14:59:52adminsetgithub: 89904
2021-11-08 06:33:06eric.smithsetstatus: open -> closed
resolution: fixed
messages: + msg405928

stage: patch review -> resolved
2021-11-08 06:32:34eric.smithsetmessages: + msg405927
2021-11-08 06:03:53miss-islingtonsetpull_requests: + pull_request27716
2021-11-08 06:03:52miss-islingtonsetnosy: + miss-islington
messages: + msg405925
2021-11-08 04:52:26rffontenellesetkeywords: + patch
stage: patch review
pull_requests: + pull_request27715
2021-11-07 13:19:38eric.smithsetkeywords: + easy
nosy: + eric.smith
messages: + msg405902

2021-11-06 23:05:18rffontenellecreate