@@ -290,17 +290,17 @@ builtin___import___impl(PyObject *module, PyObject *name, PyObject *globals,
290
290
/*[clinic input]
291
291
abs as builtin_abs
292
292
293
- x : object
293
+ number : object
294
294
/
295
295
296
296
Return the absolute value of the argument.
297
297
[clinic start generated code]*/
298
298
299
299
static PyObject *
300
- builtin_abs (PyObject * module , PyObject * x )
301
- /*[clinic end generated code: output=b1b433b9e51356f5 input=bed4ca14e29c20d1 ]*/
300
+ builtin_abs (PyObject * module , PyObject * number )
301
+ /*[clinic end generated code: output=861a9db97dee0595 input=a356196903543505 ]*/
302
302
{
303
- return PyNumber_Absolute (x );
303
+ return PyNumber_Absolute (number );
304
304
}
305
305
306
306
/*[clinic input]
@@ -426,7 +426,7 @@ builtin_ascii(PyObject *module, PyObject *obj)
426
426
/*[clinic input]
427
427
bin as builtin_bin
428
428
429
- number : object
429
+ integer : object
430
430
/
431
431
432
432
Return the binary representation of an integer.
@@ -436,10 +436,10 @@ Return the binary representation of an integer.
436
436
[clinic start generated code]*/
437
437
438
438
static PyObject *
439
- builtin_bin (PyObject * module , PyObject * number )
440
- /*[clinic end generated code: output=b6fc4ad5e649f4f7 input=53f8a0264bacaf90 ]*/
439
+ builtin_bin (PyObject * module , PyObject * integer )
440
+ /*[clinic end generated code: output=533f9388441805cc input=d16518f148341e70 ]*/
441
441
{
442
- return PyNumber_ToBase (number , 2 );
442
+ return PyNumber_ToBase (integer , 2 );
443
443
}
444
444
445
445
@@ -1780,7 +1780,7 @@ builtin_hash(PyObject *module, PyObject *obj)
1780
1780
/*[clinic input]
1781
1781
hex as builtin_hex
1782
1782
1783
- number : object
1783
+ integer : object
1784
1784
/
1785
1785
1786
1786
Return the hexadecimal representation of an integer.
@@ -1790,10 +1790,10 @@ Return the hexadecimal representation of an integer.
1790
1790
[clinic start generated code]*/
1791
1791
1792
1792
static PyObject *
1793
- builtin_hex (PyObject * module , PyObject * number )
1794
- /*[clinic end generated code: output=e46b612169099408 input=e645aff5fc7d540e ]*/
1793
+ builtin_hex (PyObject * module , PyObject * integer )
1794
+ /*[clinic end generated code: output=e5de857ba61aae08 input=3bef4746efc62fac ]*/
1795
1795
{
1796
- return PyNumber_ToBase (number , 16 );
1796
+ return PyNumber_ToBase (integer , 16 );
1797
1797
}
1798
1798
1799
1799
@@ -1847,7 +1847,7 @@ PyObject *PyAnextAwaitable_New(PyObject *, PyObject *);
1847
1847
/*[clinic input]
1848
1848
anext as builtin_anext
1849
1849
1850
- aiterator: object
1850
+ async_iterator as aiterator: object
1851
1851
default: object = NULL
1852
1852
/
1853
1853
@@ -1860,7 +1860,7 @@ it is returned instead of raising StopAsyncIteration.
1860
1860
static PyObject *
1861
1861
builtin_anext_impl (PyObject * module , PyObject * aiterator ,
1862
1862
PyObject * default_value )
1863
- /*[clinic end generated code: output=f02c060c163a81fa input=2900e4a370d39550 ]*/
1863
+ /*[clinic end generated code: output=f02c060c163a81fa input=f3dc5a93f073e5ac ]*/
1864
1864
{
1865
1865
PyTypeObject * t ;
1866
1866
PyObject * awaitable ;
@@ -2099,7 +2099,7 @@ With two or more positional arguments, return the largest argument.");
2099
2099
/*[clinic input]
2100
2100
oct as builtin_oct
2101
2101
2102
- number : object
2102
+ integer : object
2103
2103
/
2104
2104
2105
2105
Return the octal representation of an integer.
@@ -2109,10 +2109,10 @@ Return the octal representation of an integer.
2109
2109
[clinic start generated code]*/
2110
2110
2111
2111
static PyObject *
2112
- builtin_oct (PyObject * module , PyObject * number )
2113
- /*[clinic end generated code: output=40a34656b6875352 input=ad6b274af4016c72 ]*/
2112
+ builtin_oct (PyObject * module , PyObject * integer )
2113
+ /*[clinic end generated code: output=8c15f2145a74c390 input=b97c377b15fedf8d ]*/
2114
2114
{
2115
- return PyNumber_ToBase (number , 8 );
2115
+ return PyNumber_ToBase (integer , 8 );
2116
2116
}
2117
2117
2118
2118
@@ -2199,7 +2199,7 @@ builtin_pow_impl(PyObject *module, PyObject *base, PyObject *exp,
2199
2199
/*[clinic input]
2200
2200
print as builtin_print
2201
2201
2202
- *args : array
2202
+ *objects : array
2203
2203
sep: object(c_default="Py_None") = ' '
2204
2204
string inserted between values, default a space.
2205
2205
end: object(c_default="Py_None") = '\n'
@@ -2214,10 +2214,10 @@ Prints the values to a stream, or to sys.stdout by default.
2214
2214
[clinic start generated code]*/
2215
2215
2216
2216
static PyObject *
2217
- builtin_print_impl (PyObject * module , PyObject * const * args ,
2218
- Py_ssize_t args_length , PyObject * sep , PyObject * end ,
2217
+ builtin_print_impl (PyObject * module , PyObject * const * objects ,
2218
+ Py_ssize_t objects_length , PyObject * sep , PyObject * end ,
2219
2219
PyObject * file , int flush )
2220
- /*[clinic end generated code: output=3cb7e5b66f1a8547 input=66ea4de1605a2437 ]*/
2220
+ /*[clinic end generated code: output=38d8def56c837bcc input=ff35cb3d59ee8115 ]*/
2221
2221
{
2222
2222
int i , err ;
2223
2223
@@ -2258,7 +2258,7 @@ builtin_print_impl(PyObject *module, PyObject * const *args,
2258
2258
return NULL ;
2259
2259
}
2260
2260
2261
- for (i = 0 ; i < args_length ; i ++ ) {
2261
+ for (i = 0 ; i < objects_length ; i ++ ) {
2262
2262
if (i > 0 ) {
2263
2263
if (sep == NULL ) {
2264
2264
err = PyFile_WriteString (" " , file );
@@ -2271,7 +2271,7 @@ builtin_print_impl(PyObject *module, PyObject * const *args,
2271
2271
return NULL ;
2272
2272
}
2273
2273
}
2274
- err = PyFile_WriteObject (args [i ], file , Py_PRINT_RAW );
2274
+ err = PyFile_WriteObject (objects [i ], file , Py_PRINT_RAW );
2275
2275
if (err ) {
2276
2276
Py_DECREF (file );
2277
2277
return NULL ;
0 commit comments