diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-06-01 15:12:48 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-06-01 15:12:48 (GMT) |
commit | 0969a9f8abcf98bb43ea77b1dd050426adcfb4f7 (patch) | |
tree | e01ffc7880ab655dd93ee169ce8761a4ea50df9a /Objects | |
parent | 55a57b07667e9636a048deadac332551f433d28d (diff) | |
download | cpython-0969a9f8abcf98bb43ea77b1dd050426adcfb4f7.zip cpython-0969a9f8abcf98bb43ea77b1dd050426adcfb4f7.tar.gz cpython-0969a9f8abcf98bb43ea77b1dd050426adcfb4f7.tar.bz2 |
add Py_tp_finalize slot (closes #24345)
Patch from Petr Viktorin.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeslots.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc index bcbe0af..dc750cc 100644 --- a/Objects/typeslots.inc +++ b/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), |