PyAttributesHolder, again (2).

This commit is contained in:
Jean-Paul Chaput 2022-08-14 18:35:21 +02:00
parent d0d0e3aa3d
commit 440547a1c5
1 changed files with 2 additions and 2 deletions

View File

@ -87,9 +87,9 @@ namespace Isobar {
PyTypeObject PyTypeAttributesHolder =
{ PyVarObject_HEAD_INIT(NULL,0)
"Hurricane.AttributeHolder" /* tp_name. */
, sizeof( PyAttributeHolder ) /* tp_basicsize. */
, sizeof( PyAttributesHolder ) /* tp_basicsize. */
, 0 /* tp_itemsize. */
, (destructor)PyAttributeHolder_DeAlloc /* tp_dealloc. */
, (destructor)PyAttributesHolder_DeAlloc /* tp_dealloc. */
, 0 /* tp_print. */
, 0 /* tp_getattr. */
, 0 /* tp_setattr. */