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: Convert _collections._count_elements() to the Argument Clinic
Type: performance Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: miss-islington, rhettinger
Priority: normal Keywords: patch

Created on 2019-06-05 18:45 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13848 merged rhettinger, 2019-06-05 18:47
PR 13853 merged miss-islington, 2019-06-05 23:05
Messages (3)
msg344759 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-06-05 18:45
This lets _count_elements use METH_FASTCALL.
msg344778 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-06-05 23:05
New changeset e985804207473796a1326585b3e1b9e18c764345 by Raymond Hettinger in branch 'master':
bpo-37165: Convert _count_elements to the argument clinic (GH-13848)
https://github.com/python/cpython/commit/e985804207473796a1326585b3e1b9e18c764345
msg344780 - (view) Author: miss-islington (miss-islington) Date: 2019-06-05 23:21
New changeset 21ce2454de57caaa532d11d76544632608f4b86b by Miss Islington (bot) in branch '3.8':
bpo-37165: Convert _count_elements to the argument clinic (GH-13848)
https://github.com/python/cpython/commit/21ce2454de57caaa532d11d76544632608f4b86b
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81346
2019-06-06 16:02:23rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-06-05 23:21:01miss-islingtonsetnosy: + miss-islington
messages: + msg344780
2019-06-05 23:05:54miss-islingtonsetpull_requests: + pull_request13729
2019-06-05 23:05:31rhettingersetmessages: + msg344778
2019-06-05 18:47:37rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request13725
2019-06-05 18:45:07rhettingercreate