@@ -289,17 +289,17 @@ builtin___import___impl(PyObject *module, PyObject *name, PyObject *globals,
289
289
/*[clinic input]
290
290
abs as builtin_abs
291
291
292
- x : object
292
+ number : object
293
293
/
294
294
295
295
Return the absolute value of the argument.
296
296
[clinic start generated code]*/
297
297
298
298
static PyObject *
299
- builtin_abs (PyObject * module , PyObject * x )
300
- /*[clinic end generated code: output=b1b433b9e51356f5 input=bed4ca14e29c20d1 ]*/
299
+ builtin_abs (PyObject * module , PyObject * number )
300
+ /*[clinic end generated code: output=861a9db97dee0595 input=a356196903543505 ]*/
301
301
{
302
- return PyNumber_Absolute (x );
302
+ return PyNumber_Absolute (number );
303
303
}
304
304
305
305
/*[clinic input]
@@ -425,7 +425,7 @@ builtin_ascii(PyObject *module, PyObject *obj)
425
425
/*[clinic input]
426
426
bin as builtin_bin
427
427
428
- number : object
428
+ integer : object
429
429
/
430
430
431
431
Return the binary representation of an integer.
@@ -435,10 +435,10 @@ Return the binary representation of an integer.
435
435
[clinic start generated code]*/
436
436
437
437
static PyObject *
438
- builtin_bin (PyObject * module , PyObject * number )
439
- /*[clinic end generated code: output=b6fc4ad5e649f4f7 input=53f8a0264bacaf90 ]*/
438
+ builtin_bin (PyObject * module , PyObject * integer )
439
+ /*[clinic end generated code: output=533f9388441805cc input=d16518f148341e70 ]*/
440
440
{
441
- return PyNumber_ToBase (number , 2 );
441
+ return PyNumber_ToBase (integer , 2 );
442
442
}
443
443
444
444
@@ -1779,7 +1779,7 @@ builtin_hash(PyObject *module, PyObject *obj)
1779
1779
/*[clinic input]
1780
1780
hex as builtin_hex
1781
1781
1782
- number : object
1782
+ integer : object
1783
1783
/
1784
1784
1785
1785
Return the hexadecimal representation of an integer.
@@ -1789,10 +1789,10 @@ Return the hexadecimal representation of an integer.
1789
1789
[clinic start generated code]*/
1790
1790
1791
1791
static PyObject *
1792
- builtin_hex (PyObject * module , PyObject * number )
1793
- /*[clinic end generated code: output=e46b612169099408 input=e645aff5fc7d540e ]*/
1792
+ builtin_hex (PyObject * module , PyObject * integer )
1793
+ /*[clinic end generated code: output=e5de857ba61aae08 input=3bef4746efc62fac ]*/
1794
1794
{
1795
- return PyNumber_ToBase (number , 16 );
1795
+ return PyNumber_ToBase (integer , 16 );
1796
1796
}
1797
1797
1798
1798
@@ -1846,7 +1846,7 @@ PyObject *PyAnextAwaitable_New(PyObject *, PyObject *);
1846
1846
/*[clinic input]
1847
1847
anext as builtin_anext
1848
1848
1849
- aiterator: object
1849
+ async_iterator as aiterator: object
1850
1850
default: object = NULL
1851
1851
/
1852
1852
@@ -1859,7 +1859,7 @@ it is returned instead of raising StopAsyncIteration.
1859
1859
static PyObject *
1860
1860
builtin_anext_impl (PyObject * module , PyObject * aiterator ,
1861
1861
PyObject * default_value )
1862
- /*[clinic end generated code: output=f02c060c163a81fa input=2900e4a370d39550 ]*/
1862
+ /*[clinic end generated code: output=f02c060c163a81fa input=f3dc5a93f073e5ac ]*/
1863
1863
{
1864
1864
PyTypeObject * t ;
1865
1865
PyObject * awaitable ;
@@ -2098,7 +2098,7 @@ With two or more positional arguments, return the largest argument.");
2098
2098
/*[clinic input]
2099
2099
oct as builtin_oct
2100
2100
2101
- number : object
2101
+ integer : object
2102
2102
/
2103
2103
2104
2104
Return the octal representation of an integer.
@@ -2108,10 +2108,10 @@ Return the octal representation of an integer.
2108
2108
[clinic start generated code]*/
2109
2109
2110
2110
static PyObject *
2111
- builtin_oct (PyObject * module , PyObject * number )
2112
- /*[clinic end generated code: output=40a34656b6875352 input=ad6b274af4016c72 ]*/
2111
+ builtin_oct (PyObject * module , PyObject * integer )
2112
+ /*[clinic end generated code: output=8c15f2145a74c390 input=b97c377b15fedf8d ]*/
2113
2113
{
2114
- return PyNumber_ToBase (number , 8 );
2114
+ return PyNumber_ToBase (integer , 8 );
2115
2115
}
2116
2116
2117
2117
@@ -2192,7 +2192,7 @@ builtin_pow_impl(PyObject *module, PyObject *base, PyObject *exp,
2192
2192
/*[clinic input]
2193
2193
print as builtin_print
2194
2194
2195
- *args : array
2195
+ *objects : array
2196
2196
sep: object(c_default="Py_None") = ' '
2197
2197
string inserted between values, default a space.
2198
2198
end: object(c_default="Py_None") = '\n'
@@ -2207,10 +2207,10 @@ Prints the values to a stream, or to sys.stdout by default.
2207
2207
[clinic start generated code]*/
2208
2208
2209
2209
static PyObject *
2210
- builtin_print_impl (PyObject * module , PyObject * const * args ,
2211
- Py_ssize_t args_length , PyObject * sep , PyObject * end ,
2210
+ builtin_print_impl (PyObject * module , PyObject * const * objects ,
2211
+ Py_ssize_t objects_length , PyObject * sep , PyObject * end ,
2212
2212
PyObject * file , int flush )
2213
- /*[clinic end generated code: output=3cb7e5b66f1a8547 input=66ea4de1605a2437 ]*/
2213
+ /*[clinic end generated code: output=38d8def56c837bcc input=ff35cb3d59ee8115 ]*/
2214
2214
{
2215
2215
int i , err ;
2216
2216
@@ -2251,7 +2251,7 @@ builtin_print_impl(PyObject *module, PyObject * const *args,
2251
2251
return NULL ;
2252
2252
}
2253
2253
2254
- for (i = 0 ; i < args_length ; i ++ ) {
2254
+ for (i = 0 ; i < objects_length ; i ++ ) {
2255
2255
if (i > 0 ) {
2256
2256
if (sep == NULL ) {
2257
2257
err = PyFile_WriteString (" " , file );
@@ -2264,7 +2264,7 @@ builtin_print_impl(PyObject *module, PyObject * const *args,
2264
2264
return NULL ;
2265
2265
}
2266
2266
}
2267
- err = PyFile_WriteObject (args [i ], file , Py_PRINT_RAW );
2267
+ err = PyFile_WriteObject (objects [i ], file , Py_PRINT_RAW );
2268
2268
if (err ) {
2269
2269
Py_DECREF (file );
2270
2270
return NULL ;
0 commit comments