[issue19188] Add PySet_CheckExact()

2013-10-09 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> rejected status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19188] Add PySet_CheckExact()

2013-10-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: AFACIT, there is no use case. I left this out of the API for a reason. It was not an unintentional omission. -- assignee: -> rhettinger ___ Python tracker __

[issue19188] Add PySet_CheckExact()

2013-10-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: There are PyFrozenSet_CheckExact() and PyAnySet_CheckExact() but there is no PySet_CheckExact(). Perhaps we should add it for consistency. -- components: Interpreter Core messages: 199157 nosy: christian.heimes, pitrou, rhettinger, serhiy.storchaka