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: Add PySet_CheckExact
Type: Stage: resolved
Components: C API Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pablogsal
Priority: normal Keywords: patch

Created on 2021-02-20 16:48 by pablogsal, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24598 merged pablogsal, 2021-02-20 16:52
Messages (2)
msg387413 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-02-20 16:48
For some mysterious reason we have PySet_Check, PyFrozenSet_Check, PyAnySet_Check, PyAnySet_CheckExact and PyFrozenSet_CheckExact but no PySet_CheckExact
msg387423 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-02-20 18:03
New changeset d439fb304ca3098aab1ed0a314996f9d29347b21 by Pablo Galindo in branch 'master':
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)
https://github.com/python/cpython/commit/d439fb304ca3098aab1ed0a314996f9d29347b21
History
Date User Action Args
2022-04-11 14:59:41adminsetgithub: 87443
2021-02-20 18:05:41pablogsalsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-02-20 18:03:16pablogsalsetmessages: + msg387423
2021-02-20 16:52:42pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request23376
2021-02-20 16:48:37pablogsalcreate