@@ -6596,7 +6596,7 @@ static slotdef slotdefs[] = {
6596
6596
"__repr__($self, /)\n--\n\nReturn repr(self)." ),
6597
6597
TPSLOT ("__hash__" , tp_hash , slot_tp_hash , wrap_hashfunc ,
6598
6598
"__hash__($self, /)\n--\n\nReturn hash(self)." ),
6599
- FLSLOT ("__call__" , tp_call , slot_tp_call , (wrapperfunc )wrap_call ,
6599
+ FLSLOT ("__call__" , tp_call , slot_tp_call , (wrapperfunc )( void ( * )( void )) wrap_call ,
6600
6600
"__call__($self, /, *args, **kwargs)\n--\n\nCall self as a function." ,
6601
6601
PyWrapperFlag_KEYWORDS ),
6602
6602
TPSLOT ("__str__" , tp_str , slot_tp_str , wrap_unaryfunc ,
@@ -6632,7 +6632,7 @@ static slotdef slotdefs[] = {
6632
6632
TPSLOT ("__delete__" , tp_descr_set , slot_tp_descr_set ,
6633
6633
wrap_descr_delete ,
6634
6634
"__delete__($self, instance, /)\n--\n\nDelete an attribute of instance." ),
6635
- FLSLOT ("__init__" , tp_init , slot_tp_init , (wrapperfunc )wrap_init ,
6635
+ FLSLOT ("__init__" , tp_init , slot_tp_init , (wrapperfunc )( void ( * )( void )) wrap_init ,
6636
6636
"__init__($self, /, *args, **kwargs)\n--\n\n"
6637
6637
"Initialize self. See help(type(self)) for accurate signature." ,
6638
6638
PyWrapperFlag_KEYWORDS ),
0 commit comments