Browse Source

add Py_tp_finalize slot (closes #24345)

Patch from Petr Viktorin.
pull/9921/head
Benjamin Peterson 11 years ago
parent
commit
0969a9f8ab
  1. 1
      Include/typeslots.h
  2. 2
      Misc/NEWS
  3. 1
      Objects/typeslots.inc

1
Include/typeslots.h

@ -79,3 +79,4 @@
#define Py_am_await 77
#define Py_am_aiter 78
#define Py_am_anext 79
#define Py_tp_finalize 80

2
Misc/NEWS

@ -10,6 +10,8 @@ Release date: 2015-07-05
Core and Builtins
-----------------
- Issue #24345: Add Py_tp_finalize slot for the stable ABI.
Library
-------

1
Objects/typeslots.inc

@ -78,3 +78,4 @@ offsetof(PyHeapTypeObject, as_number.nb_inplace_matrix_multiply),
offsetof(PyHeapTypeObject, as_async.am_await),
offsetof(PyHeapTypeObject, as_async.am_aiter),
offsetof(PyHeapTypeObject, as_async.am_anext),
offsetof(PyHeapTypeObject, ht_type.tp_finalize),
Loading…
Cancel
Save