@@ -6822,7 +6822,7 @@ static slotdef slotdefs[] = {
68226822 "__repr__($self, /)\n--\n\nReturn repr(self)." ),
68236823 TPSLOT ("__hash__" , tp_hash , slot_tp_hash , wrap_hashfunc ,
68246824 "__hash__($self, /)\n--\n\nReturn hash(self)." ),
6825- FLSLOT ("__call__" , tp_call , slot_tp_call , (wrapperfunc )wrap_call ,
6825+ FLSLOT ("__call__" , tp_call , slot_tp_call , (wrapperfunc )( void ( * )( void )) wrap_call ,
68266826 "__call__($self, /, *args, **kwargs)\n--\n\nCall self as a function." ,
68276827 PyWrapperFlag_KEYWORDS ),
68286828 TPSLOT ("__str__" , tp_str , slot_tp_str , wrap_unaryfunc ,
@@ -6858,7 +6858,7 @@ static slotdef slotdefs[] = {
68586858 TPSLOT ("__delete__" , tp_descr_set , slot_tp_descr_set ,
68596859 wrap_descr_delete ,
68606860 "__delete__($self, instance, /)\n--\n\nDelete an attribute of instance." ),
6861- FLSLOT ("__init__" , tp_init , slot_tp_init , (wrapperfunc )wrap_init ,
6861+ FLSLOT ("__init__" , tp_init , slot_tp_init , (wrapperfunc )( void ( * )( void )) wrap_init ,
68626862 "__init__($self, /, *args, **kwargs)\n--\n\n"
68636863 "Initialize self. See help(type(self)) for accurate signature." ,
68646864 PyWrapperFlag_KEYWORDS ),
0 commit comments