mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
gh-128863: Deprecate private C API functions (#128864)
Deprecate private C API functions: * _PyBytes_Join() * _PyDict_GetItemStringWithError() * _PyDict_Pop() * _PyThreadState_UncheckedGet() * _PyUnicode_AsString() * _Py_HashPointer() * _Py_fopen_obj() Replace _Py_HashPointer() with Py_HashPointer(). Remove references to deprecated functions.
This commit is contained in:
parent
470a0a68eb
commit
9012fa741d
16 changed files with 103 additions and 30 deletions
|
|
@ -260,7 +260,7 @@ mp_length __len__ - dict_length
|
|||
mp_subscript __getitem__ - dict_subscript
|
||||
mp_ass_subscript __setitem__ - dict_ass_sub
|
||||
__delitem__
|
||||
tp_hash __hash__ _Py_HashPointer ..._HashNotImpl
|
||||
tp_hash __hash__ Py_HashPointer ..._HashNotImpl
|
||||
tp_str __str__ object_str -
|
||||
tp_getattro __getattribute__ ..._GenericGetAttr (repeated)
|
||||
__getattr__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue