@@ -4135,7 +4135,7 @@ test_vararg_and_posonly
4135
4135
4136
4136
a: object
4137
4137
/
4138
- *args: object
4138
+ *args: tuple
4139
4139
4140
4140
[clinic start generated code]*/
4141
4141
@@ -4176,7 +4176,7 @@ test_vararg_and_posonly(PyObject *module, PyObject *const *args, Py_ssize_t narg
4176
4176
4177
4177
static PyObject *
4178
4178
test_vararg_and_posonly_impl (PyObject * module , PyObject * a , PyObject * args )
4179
- /*[clinic end generated code: output=0c11c475e240869e input=9cfa748bbff09877 ]*/
4179
+ /*[clinic end generated code: output=0c11c475e240869e input=2c49a482f68545c0 ]*/
4180
4180
4181
4181
PyDoc_STRVAR (test_vararg_and_posonly__doc__ ,
4182
4182
"test_vararg_and_posonly($module, a, /, *args)\n"
@@ -4221,7 +4221,7 @@ test_vararg
4221
4221
4222
4222
4223
4223
a: object
4224
- *args: object
4224
+ *args: tuple
4225
4225
4226
4226
[clinic start generated code]*/
4227
4227
@@ -4292,14 +4292,14 @@ test_vararg(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject
4292
4292
4293
4293
static PyObject *
4294
4294
test_vararg_impl (PyObject * module , PyObject * a , PyObject * args )
4295
- /*[clinic end generated code: output=e7d7da6a7e008125 input=81d33815ad1bae6e ]*/
4295
+ /*[clinic end generated code: output=e7d7da6a7e008125 input=7448995636d9186a ]*/
4296
4296
4297
4297
/*[clinic input]
4298
4298
test_vararg_with_default
4299
4299
4300
4300
4301
4301
a: object
4302
- *args: object
4302
+ *args: tuple
4303
4303
b: bool = False
4304
4304
4305
4305
[clinic start generated code]*/
@@ -4383,13 +4383,13 @@ test_vararg_with_default(PyObject *module, PyObject *const *args, Py_ssize_t nar
4383
4383
static PyObject *
4384
4384
test_vararg_with_default_impl (PyObject * module , PyObject * a , PyObject * args ,
4385
4385
int b )
4386
- /*[clinic end generated code: output=46781f9920ecedcf input=6e110b54acd9b22d ]*/
4386
+ /*[clinic end generated code: output=46781f9920ecedcf input=3a0f9f557ce1f712 ]*/
4387
4387
4388
4388
/*[clinic input]
4389
4389
test_vararg_with_only_defaults
4390
4390
4391
4391
4392
- *args: object
4392
+ *args: tuple
4393
4393
b: bool = False
4394
4394
c: object = ' '
4395
4395
@@ -4477,7 +4477,7 @@ test_vararg_with_only_defaults(PyObject *module, PyObject *const *args, Py_ssize
4477
4477
static PyObject *
4478
4478
test_vararg_with_only_defaults_impl (PyObject * module , PyObject * args , int b ,
4479
4479
PyObject * c )
4480
- /*[clinic end generated code: output=d03daf5067039c03 input=fa56a709a035666e ]*/
4480
+ /*[clinic end generated code: output=d03daf5067039c03 input=6983e66817f82924 ]*/
4481
4481
4482
4482
/*[clinic input]
4483
4483
test_paramname_module
@@ -4978,7 +4978,7 @@ Test_an_metho_arg_named_arg_impl(TestObj *self, int arg)
4978
4978
4979
4979
/*[clinic input]
4980
4980
Test.__init__
4981
- *args: object
4981
+ *args: tuple
4982
4982
4983
4983
Varargs init method. For example, nargs is translated to PyTuple_GET_SIZE.
4984
4984
[clinic start generated code]*/
@@ -5016,7 +5016,7 @@ Test___init__(PyObject *self, PyObject *args, PyObject *kwargs)
5016
5016
5017
5017
static int
5018
5018
Test___init___impl (TestObj * self , PyObject * args )
5019
- /*[clinic end generated code: output=f172425cec373cd6 input=2a8bd0033c9ac772 ]*/
5019
+ /*[clinic end generated code: output=f172425cec373cd6 input=4b8388c4e6baab6f ]*/
5020
5020
5021
5021
PyDoc_STRVAR (Test___init____doc__ ,
5022
5022
"Test (* args )\n "
@@ -5054,7 +5054,7 @@ Test___init__(PyObject *self, PyObject *args, PyObject *kwargs)
5054
5054
/*[clinic input]
5055
5055
@classmethod
5056
5056
Test.__new__
5057
- *args: object
5057
+ *args: tuple
5058
5058
5059
5059
Varargs new method. For example, nargs is translated to PyTuple_GET_SIZE.
5060
5060
[clinic start generated code]*/
@@ -5091,7 +5091,7 @@ Test(PyTypeObject *type, PyObject *args, PyObject *kwargs)
5091
5091
5092
5092
static PyObject *
5093
5093
Test_impl (PyTypeObject * type , PyObject * args )
5094
- /*[clinic end generated code: output=ee1e8892a67abd4a input=70ad829df3dd9b84 ]*/
5094
+ /*[clinic end generated code: output=ee1e8892a67abd4a input=a8259521129cad20 ]*/
5095
5095
5096
5096
PyDoc_STRVAR (Test__doc__ ,
5097
5097
"Test (* args )\n "
0 commit comments