Skip to content
Snippets Groups Projects
Commit 3644d8c0 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

Wrapping/PythonCore: use slot access for sequence methods

parent e048c993
No related branches found
No related tags found
No related merge requests found
......@@ -122,8 +122,15 @@ PyObject* PyVTKSpecialObject_SequenceString(PyObject* self)
PyObject *t, *o, *comma;
const char* bracket = "[...]";
#if PY_VERSION_HEX >= 0x030A0000
PyTypeObject* type = Py_TYPE(self);
ssizeargfunc sq_item = (ssizeargfunc)PyType_GetSlot(type, Py_sq_item);
ssizeobjargproc sq_ass_item = (ssizeobjargproc)PyType_GetSlot(type, Py_sq_ass_item);
if (sq_item != nullptr && sq_ass_item == nullptr)
#else
if (Py_TYPE(self)->tp_as_sequence && Py_TYPE(self)->tp_as_sequence->sq_item != nullptr &&
Py_TYPE(self)->tp_as_sequence->sq_ass_item == nullptr)
#endif
{
bracket = "(...)";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment