@@ -4758,7 +4758,7 @@ static PyObject *
4758
4758
Test_cls_with_param_impl (TestObj * self , PyTypeObject * cls , int a );
4759
4759
4760
4760
static PyObject *
4761
- Test_cls_with_param (TestObj * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
4761
+ Test_cls_with_param (PyObject * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
4762
4762
{
4763
4763
PyObject * return_value = NULL ;
4764
4764
#if defined(Py_BUILD_CORE ) && !defined(Py_BUILD_CORE_MODULE )
@@ -4798,15 +4798,15 @@ Test_cls_with_param(TestObj *self, PyTypeObject *cls, PyObject *const *args, Py_
4798
4798
if (a == -1 && PyErr_Occurred ()) {
4799
4799
goto exit ;
4800
4800
}
4801
- return_value = Test_cls_with_param_impl (self , cls , a );
4801
+ return_value = Test_cls_with_param_impl (( TestObj * ) self , cls , a );
4802
4802
4803
4803
exit :
4804
4804
return return_value ;
4805
4805
}
4806
4806
4807
4807
static PyObject *
4808
4808
Test_cls_with_param_impl (TestObj * self , PyTypeObject * cls , int a )
4809
- /*[clinic end generated code: output=83a391eea66d08f8 input=af158077bd237ef9]*/
4809
+ /*[clinic end generated code: output=7e893134a81fef92 input=af158077bd237ef9]*/
4810
4810
4811
4811
4812
4812
/*[clinic input]
@@ -4908,18 +4908,18 @@ static PyObject *
4908
4908
Test_cls_no_params_impl (TestObj * self , PyTypeObject * cls );
4909
4909
4910
4910
static PyObject *
4911
- Test_cls_no_params (TestObj * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
4911
+ Test_cls_no_params (PyObject * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
4912
4912
{
4913
4913
if (nargs || (kwnames && PyTuple_GET_SIZE (kwnames ))) {
4914
4914
PyErr_SetString (PyExc_TypeError , "cls_no_params() takes no arguments" );
4915
4915
return NULL ;
4916
4916
}
4917
- return Test_cls_no_params_impl (self , cls );
4917
+ return Test_cls_no_params_impl (( TestObj * ) self , cls );
4918
4918
}
4919
4919
4920
4920
static PyObject *
4921
4921
Test_cls_no_params_impl (TestObj * self , PyTypeObject * cls )
4922
- /*[clinic end generated code: output=4d68b4652c144af3 input=e7e2e4e344e96a11]*/
4922
+ /*[clinic end generated code: output=8845de054449f40a input=e7e2e4e344e96a11]*/
4923
4923
4924
4924
4925
4925
/*[clinic input]
@@ -4945,7 +4945,7 @@ Test_metho_not_default_return_converter(TestObj *self, PyObject *a)
4945
4945
PyObject * return_value = NULL ;
4946
4946
int _return_value ;
4947
4947
4948
- _return_value = Test_metho_not_default_return_converter_impl (self , a );
4948
+ _return_value = Test_metho_not_default_return_converter_impl (( TestObj * ) self , a );
4949
4949
if ((_return_value == -1 ) && PyErr_Occurred ()) {
4950
4950
goto exit ;
4951
4951
}
@@ -4957,7 +4957,7 @@ Test_metho_not_default_return_converter(TestObj *self, PyObject *a)
4957
4957
4958
4958
static int
4959
4959
Test_metho_not_default_return_converter_impl (TestObj * self , PyObject * a )
4960
- /*[clinic end generated code: output=3350de11bd538007 input=428657129b521177]*/
4960
+ /*[clinic end generated code: output=b2cce75a7af2e6ce input=428657129b521177]*/
4961
4961
4962
4962
4963
4963
/*[clinic input]
@@ -4983,7 +4983,7 @@ static PyObject *
4983
4983
Test_an_metho_arg_named_arg_impl (TestObj * self , int arg );
4984
4984
4985
4985
static PyObject *
4986
- Test_an_metho_arg_named_arg (TestObj * self , PyObject * arg_ )
4986
+ Test_an_metho_arg_named_arg (PyObject * self , PyObject * arg_ )
4987
4987
{
4988
4988
PyObject * return_value = NULL ;
4989
4989
int arg ;
@@ -4992,15 +4992,15 @@ Test_an_metho_arg_named_arg(TestObj *self, PyObject *arg_)
4992
4992
if (arg == -1 && PyErr_Occurred ()) {
4993
4993
goto exit ;
4994
4994
}
4995
- return_value = Test_an_metho_arg_named_arg_impl (self , arg );
4995
+ return_value = Test_an_metho_arg_named_arg_impl (( TestObj * ) self , arg );
4996
4996
4997
4997
exit :
4998
4998
return return_value ;
4999
4999
}
5000
5000
5001
5001
static PyObject *
5002
5002
Test_an_metho_arg_named_arg_impl (TestObj * self , int arg )
5003
- /*[clinic end generated code: output=9f04de4a62287e28 input=2a53a57cf5624f95]*/
5003
+ /*[clinic end generated code: output=38554f09950d07e7 input=2a53a57cf5624f95]*/
5004
5004
5005
5005
5006
5006
/*[clinic input]
@@ -5289,14 +5289,14 @@ static PyObject *
5289
5289
Test_meth_coexist_impl (TestObj * self );
5290
5290
5291
5291
static PyObject *
5292
- Test_meth_coexist (TestObj * self , PyObject * Py_UNUSED (ignored ))
5292
+ Test_meth_coexist (PyObject * self , PyObject * Py_UNUSED (ignored ))
5293
5293
{
5294
- return Test_meth_coexist_impl (self );
5294
+ return Test_meth_coexist_impl (( TestObj * ) self );
5295
5295
}
5296
5296
5297
5297
static PyObject *
5298
5298
Test_meth_coexist_impl (TestObj * self )
5299
- /*[clinic end generated code: output=808a293d0cd27439 input=2a1d75b5e6fec6dd]*/
5299
+ /*[clinic end generated code: output=7edf4e95b29f06fa input=2a1d75b5e6fec6dd]*/
5300
5300
5301
5301
/*[clinic input]
5302
5302
@getter
@@ -5317,14 +5317,14 @@ static PyObject *
5317
5317
Test_property_get_impl (TestObj * self );
5318
5318
5319
5319
static PyObject *
5320
- Test_property_get (TestObj * self , void * Py_UNUSED (context ))
5320
+ Test_property_get (PyObject * self , void * Py_UNUSED (context ))
5321
5321
{
5322
- return Test_property_get_impl (self );
5322
+ return Test_property_get_impl (( TestObj * ) self );
5323
5323
}
5324
5324
5325
5325
static PyObject *
5326
5326
Test_property_get_impl (TestObj * self )
5327
- /*[clinic end generated code: output=7cadd0f539805266 input=2d92b3449fbc7d2b]*/
5327
+ /*[clinic end generated code: output=b38d68abd3466a6e input=2d92b3449fbc7d2b]*/
5328
5328
5329
5329
/*[clinic input]
5330
5330
@setter
@@ -5345,18 +5345,18 @@ static int
5345
5345
Test_property_set_impl (TestObj * self , PyObject * value );
5346
5346
5347
5347
static int
5348
- Test_property_set (TestObj * self , PyObject * value , void * Py_UNUSED (context ))
5348
+ Test_property_set (PyObject * self , PyObject * value , void * Py_UNUSED (context ))
5349
5349
{
5350
5350
int return_value ;
5351
5351
5352
- return_value = Test_property_set_impl (self , value );
5352
+ return_value = Test_property_set_impl (( TestObj * ) self , value );
5353
5353
5354
5354
return return_value ;
5355
5355
}
5356
5356
5357
5357
static int
5358
5358
Test_property_set_impl (TestObj * self , PyObject * value )
5359
- /*[clinic end generated code: output=e4342fe9bb1d7817 input=3bc3f46a23c83a88]*/
5359
+ /*[clinic end generated code: output=49f925ab2a33b637 input=3bc3f46a23c83a88]*/
5360
5360
5361
5361
/*[clinic input]
5362
5362
@setter
@@ -5377,18 +5377,18 @@ static int
5377
5377
Test_setter_first_with_docstr_set_impl (TestObj * self , PyObject * value );
5378
5378
5379
5379
static int
5380
- Test_setter_first_with_docstr_set (TestObj * self , PyObject * value , void * Py_UNUSED (context ))
5380
+ Test_setter_first_with_docstr_set (PyObject * self , PyObject * value , void * Py_UNUSED (context ))
5381
5381
{
5382
5382
int return_value ;
5383
5383
5384
- return_value = Test_setter_first_with_docstr_set_impl (self , value );
5384
+ return_value = Test_setter_first_with_docstr_set_impl (( TestObj * ) self , value );
5385
5385
5386
5386
return return_value ;
5387
5387
}
5388
5388
5389
5389
static int
5390
5390
Test_setter_first_with_docstr_set_impl (TestObj * self , PyObject * value )
5391
- /*[clinic end generated code: output=e4d76b558a4061db input=31a045ce11bbe961]*/
5391
+ /*[clinic end generated code: output=5aaf44373c0af545 input=31a045ce11bbe961]*/
5392
5392
5393
5393
/*[clinic input]
5394
5394
@getter
@@ -5418,14 +5418,14 @@ static PyObject *
5418
5418
Test_setter_first_with_docstr_get_impl (TestObj * self );
5419
5419
5420
5420
static PyObject *
5421
- Test_setter_first_with_docstr_get (TestObj * self , void * Py_UNUSED (context ))
5421
+ Test_setter_first_with_docstr_get (PyObject * self , void * Py_UNUSED (context ))
5422
5422
{
5423
- return Test_setter_first_with_docstr_get_impl (self );
5423
+ return Test_setter_first_with_docstr_get_impl (( TestObj * ) self );
5424
5424
}
5425
5425
5426
5426
static PyObject *
5427
5427
Test_setter_first_with_docstr_get_impl (TestObj * self )
5428
- /*[clinic end generated code: output=749a30266f9fb443 input=10af4e43b3cb34dc]*/
5428
+ /*[clinic end generated code: output=fe6e3aa844a24920 input=10af4e43b3cb34dc]*/
5429
5429
5430
5430
/*[clinic input]
5431
5431
output push
@@ -5708,7 +5708,7 @@ Test__pyarg_parsestackandkeywords_impl(TestObj *self, PyTypeObject *cls,
5708
5708
Py_ssize_t key_length );
5709
5709
5710
5710
static PyObject *
5711
- Test__pyarg_parsestackandkeywords (TestObj * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
5711
+ Test__pyarg_parsestackandkeywords (PyObject * self , PyTypeObject * cls , PyObject * const * args , Py_ssize_t nargs , PyObject * kwnames )
5712
5712
{
5713
5713
PyObject * return_value = NULL ;
5714
5714
#if defined(Py_BUILD_CORE ) && !defined(Py_BUILD_CORE_MODULE )
@@ -5731,7 +5731,7 @@ Test__pyarg_parsestackandkeywords(TestObj *self, PyTypeObject *cls, PyObject *co
5731
5731
& key , & key_length )) {
5732
5732
goto exit ;
5733
5733
}
5734
- return_value = Test__pyarg_parsestackandkeywords_impl (self , cls , key , key_length );
5734
+ return_value = Test__pyarg_parsestackandkeywords_impl (( TestObj * ) self , cls , key , key_length );
5735
5735
5736
5736
exit :
5737
5737
return return_value ;
@@ -5741,7 +5741,7 @@ static PyObject *
5741
5741
Test__pyarg_parsestackandkeywords_impl (TestObj * self , PyTypeObject * cls ,
5742
5742
const char * key ,
5743
5743
Py_ssize_t key_length )
5744
- /*[clinic end generated code: output=4fda8a7f2547137c input=fc72ef4b4cfafabc]*/
5744
+ /*[clinic end generated code: output=7060c213d7b8200e input=fc72ef4b4cfafabc]*/
5745
5745
5746
5746
5747
5747
/*[clinic input]
0 commit comments