@@ -6822,7 +6822,7 @@ static slotdef slotdefs[] = {
6822
6822
"__repr__($self, /)\n--\n\nReturn repr(self)." ),
6823
6823
TPSLOT ("__hash__" , tp_hash , slot_tp_hash , wrap_hashfunc ,
6824
6824
"__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 ,
6826
6826
"__call__($self, /, *args, **kwargs)\n--\n\nCall self as a function." ,
6827
6827
PyWrapperFlag_KEYWORDS ),
6828
6828
TPSLOT ("__str__" , tp_str , slot_tp_str , wrap_unaryfunc ,
@@ -6858,7 +6858,7 @@ static slotdef slotdefs[] = {
6858
6858
TPSLOT ("__delete__" , tp_descr_set , slot_tp_descr_set ,
6859
6859
wrap_descr_delete ,
6860
6860
"__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 ,
6862
6862
"__init__($self, /, *args, **kwargs)\n--\n\n"
6863
6863
"Initialize self. See help(type(self)) for accurate signature." ,
6864
6864
PyWrapperFlag_KEYWORDS ),
0 commit comments