]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)
authorPablo Galindo <Pablogsal@gmail.com>
Sat, 20 Feb 2021 18:03:08 +0000 (18:03 +0000)
committerGitHub <noreply@github.com>
Sat, 20 Feb 2021 18:03:08 +0000 (18:03 +0000)
commitd439fb304ca3098aab1ed0a314996f9d29347b21
tree10d231bac1b2f609a1179cbe8e6e06610080feb0
parent46496f9d12582bf11f4911ad0f23315d6f277907
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)

For some mysterious reason we have PySet_Check, PyFrozenSet_Check, PyAnySet_Check, PyAnySet_CheckExact and PyFrozenSet_CheckExact but no PySet_CheckExact.
Doc/c-api/set.rst
Doc/whatsnew/3.10.rst
Include/setobject.h
Misc/NEWS.d/next/Core and Builtins/2021-02-20-16-50-22.bpo-43277.FXkRXk.rst [new file with mode: 0644]
Objects/dictobject.c
Objects/setobject.c