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.

Author petr.viktorin
Recipients petr.viktorin, shihai1991, vstinner
Date 2020-11-05.15:28:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604590089.42.0.421530425253.issue41618@roundup.psfhosted.org>
In-reply-to
Content
My views on individual slots:

Not a function, shouldn't be used with PyType_Slot:
  * tp_dict - I'd add a PyType_GetDict if there is a need to get this
  * tp_mro - I'd add a PyType_GetMRO if there is a need to get this
(There are existing slots that aren't functions; I'd like to deprecate them in the long term.)

internal use only, do not expose:
  * tp_cache
  * tp_subclasses
  * tp_weaklist
  * tp_as_*

Not part of limited API, do not expose:
  * tp_vectorcall

Can be exposed if we deem all of the related API stable:
  * bf_getbuffer
  * bf_releasebuffer
History
Date User Action Args
2020-11-05 15:28:09petr.viktorinsetrecipients: + petr.viktorin, vstinner, shihai1991
2020-11-05 15:28:09petr.viktorinsetmessageid: <1604590089.42.0.421530425253.issue41618@roundup.psfhosted.org>
2020-11-05 15:28:09petr.viktorinlinkissue41618 messages
2020-11-05 15:28:09petr.viktorincreate