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: enhancement Stage: needs patch
Components: Interpreter Core Versions: Python 3.4
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: christian.heimes, pitrou, rhettinger, serhiy.storchaka
Priority: normal Keywords:

Created on 2013-10-07 19:35 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg199157 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-10-07 19:35
There are PyFrozenSet_CheckExact() and PyAnySet_CheckExact() but there is no PySet_CheckExact(). Perhaps we should add it for consistency.
msg199170 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2013-10-08 03:13
AFACIT, there is no use case.  I left this out of the API for a reason.  It was not an unintentional omission.
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63387
2013-10-10 04:53:34rhettingersetstatus: open -> closed
resolution: rejected
2013-10-08 03:13:45rhettingersetassignee: rhettinger
messages: + msg199170
2013-10-07 19:35:39serhiy.storchakacreate