mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
This commit is contained in:
parent
b8a2f51ceb
commit
1a2b24f02d
71 changed files with 1814 additions and 1835 deletions
|
@ -242,8 +242,8 @@ Return the absolute value of the argument.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_abs(PyModuleDef *module, PyObject *x)
|
||||
/*[clinic end generated code: output=6833047c493ecea2 input=bed4ca14e29c20d1]*/
|
||||
builtin_abs(PyObject *module, PyObject *x)
|
||||
/*[clinic end generated code: output=b1b433b9e51356f5 input=bed4ca14e29c20d1]*/
|
||||
{
|
||||
return PyNumber_Absolute(x);
|
||||
}
|
||||
|
@ -260,8 +260,8 @@ If the iterable is empty, return True.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_all(PyModuleDef *module, PyObject *iterable)
|
||||
/*[clinic end generated code: output=089e6d1b7bde27b1 input=1a7c5d1bc3438a21]*/
|
||||
builtin_all(PyObject *module, PyObject *iterable)
|
||||
/*[clinic end generated code: output=ca2a7127276f79b3 input=1a7c5d1bc3438a21]*/
|
||||
{
|
||||
PyObject *it, *item;
|
||||
PyObject *(*iternext)(PyObject *);
|
||||
|
@ -309,8 +309,8 @@ If the iterable is empty, return False.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_any(PyModuleDef *module, PyObject *iterable)
|
||||
/*[clinic end generated code: output=1be994b2c2307492 input=41d7451c23384f24]*/
|
||||
builtin_any(PyObject *module, PyObject *iterable)
|
||||
/*[clinic end generated code: output=fa65684748caa60e input=41d7451c23384f24]*/
|
||||
{
|
||||
PyObject *it, *item;
|
||||
PyObject *(*iternext)(PyObject *);
|
||||
|
@ -361,8 +361,8 @@ to that returned by repr() in Python 2.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_ascii(PyModuleDef *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=d4e862c48af2a933 input=4c62732e1b3a3cc9]*/
|
||||
builtin_ascii(PyObject *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=6d37b3f0984c7eb9 input=4c62732e1b3a3cc9]*/
|
||||
{
|
||||
return PyObject_ASCII(obj);
|
||||
}
|
||||
|
@ -381,8 +381,8 @@ Return the binary representation of an integer.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_bin(PyModuleDef *module, PyObject *number)
|
||||
/*[clinic end generated code: output=25ee26c6cf3bbb54 input=53f8a0264bacaf90]*/
|
||||
builtin_bin(PyObject *module, PyObject *number)
|
||||
/*[clinic end generated code: output=b6fc4ad5e649f4f7 input=53f8a0264bacaf90]*/
|
||||
{
|
||||
return PyNumber_ToBase(number, 2);
|
||||
}
|
||||
|
@ -401,8 +401,8 @@ __call__() method.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_callable(PyModuleDef *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=f4df2ce92364b656 input=1423bab99cc41f58]*/
|
||||
builtin_callable(PyObject *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=2b095d59d934cb7e input=1423bab99cc41f58]*/
|
||||
{
|
||||
return PyBool_FromLong((long)PyCallable_Check(obj));
|
||||
}
|
||||
|
@ -574,9 +574,8 @@ format_spec defaults to the empty string
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_format_impl(PyModuleDef *module, PyObject *value,
|
||||
PyObject *format_spec)
|
||||
/*[clinic end generated code: output=4341fd78a5f01764 input=6325e751a1b29b86]*/
|
||||
builtin_format_impl(PyObject *module, PyObject *value, PyObject *format_spec)
|
||||
/*[clinic end generated code: output=2f40bdfa4954b077 input=6325e751a1b29b86]*/
|
||||
{
|
||||
return PyObject_Format(value, format_spec);
|
||||
}
|
||||
|
@ -591,8 +590,8 @@ Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_chr_impl(PyModuleDef *module, int i)
|
||||
/*[clinic end generated code: output=67fe4d87e690f373 input=3f604ef45a70750d]*/
|
||||
builtin_chr_impl(PyObject *module, int i)
|
||||
/*[clinic end generated code: output=c733afcd200afcb7 input=3f604ef45a70750d]*/
|
||||
{
|
||||
return PyUnicode_FromOrdinal(i);
|
||||
}
|
||||
|
@ -672,10 +671,10 @@ in addition to any features explicitly specified.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_compile_impl(PyModuleDef *module, PyObject *source,
|
||||
PyObject *filename, const char *mode, int flags,
|
||||
int dont_inherit, int optimize)
|
||||
/*[clinic end generated code: output=31881762c1bb90c4 input=9d53e8cfb3c86414]*/
|
||||
builtin_compile_impl(PyObject *module, PyObject *source, PyObject *filename,
|
||||
const char *mode, int flags, int dont_inherit,
|
||||
int optimize)
|
||||
/*[clinic end generated code: output=1fa176e33452bb63 input=9d53e8cfb3c86414]*/
|
||||
{
|
||||
PyObject *source_copy;
|
||||
const char *str;
|
||||
|
@ -800,8 +799,8 @@ Return the tuple (x//y, x%y). Invariant: div*y + mod == x.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_divmod_impl(PyModuleDef *module, PyObject *x, PyObject *y)
|
||||
/*[clinic end generated code: output=9ad0076120ebf9ac input=175ad9c84ff41a85]*/
|
||||
builtin_divmod_impl(PyObject *module, PyObject *x, PyObject *y)
|
||||
/*[clinic end generated code: output=b06d8a5f6e0c745e input=175ad9c84ff41a85]*/
|
||||
{
|
||||
return PyNumber_Divmod(x, y);
|
||||
}
|
||||
|
@ -825,9 +824,9 @@ If only globals is given, locals defaults to it.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_eval_impl(PyModuleDef *module, PyObject *source, PyObject *globals,
|
||||
builtin_eval_impl(PyObject *module, PyObject *source, PyObject *globals,
|
||||
PyObject *locals)
|
||||
/*[clinic end generated code: output=7284501fb7b4d666 input=11ee718a8640e527]*/
|
||||
/*[clinic end generated code: output=0a0824aa70093116 input=11ee718a8640e527]*/
|
||||
{
|
||||
PyObject *result, *source_copy;
|
||||
const char *str;
|
||||
|
@ -908,9 +907,9 @@ If only globals is given, locals defaults to it.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_exec_impl(PyModuleDef *module, PyObject *source, PyObject *globals,
|
||||
builtin_exec_impl(PyObject *module, PyObject *source, PyObject *globals,
|
||||
PyObject *locals)
|
||||
/*[clinic end generated code: output=83d574ef9d5d0b46 input=01ca3e1c01692829]*/
|
||||
/*[clinic end generated code: output=3c90efc6ab68ef5d input=01ca3e1c01692829]*/
|
||||
{
|
||||
PyObject *v;
|
||||
|
||||
|
@ -1024,8 +1023,8 @@ global scope and vice-versa.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_globals_impl(PyModuleDef *module)
|
||||
/*[clinic end generated code: output=4958645e96dd8138 input=9327576f92bb48ba]*/
|
||||
builtin_globals_impl(PyObject *module)
|
||||
/*[clinic end generated code: output=e5dd1527067b94d2 input=9327576f92bb48ba]*/
|
||||
{
|
||||
PyObject *d;
|
||||
|
||||
|
@ -1048,8 +1047,8 @@ This is done by calling getattr(obj, name) and catching AttributeError.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_hasattr_impl(PyModuleDef *module, PyObject *obj, PyObject *name)
|
||||
/*[clinic end generated code: output=81154fdd63634696 input=0faec9787d979542]*/
|
||||
builtin_hasattr_impl(PyObject *module, PyObject *obj, PyObject *name)
|
||||
/*[clinic end generated code: output=a7aff2090a4151e5 input=0faec9787d979542]*/
|
||||
{
|
||||
PyObject *v;
|
||||
|
||||
|
@ -1324,9 +1323,9 @@ setattr(x, 'y', v) is equivalent to ``x.y = v''
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_setattr_impl(PyModuleDef *module, PyObject *obj, PyObject *name,
|
||||
builtin_setattr_impl(PyObject *module, PyObject *obj, PyObject *name,
|
||||
PyObject *value)
|
||||
/*[clinic end generated code: output=d881c655c0f7e34f input=bd2b7ca6875a1899]*/
|
||||
/*[clinic end generated code: output=dc2ce1d1add9acb4 input=bd2b7ca6875a1899]*/
|
||||
{
|
||||
if (PyObject_SetAttr(obj, name, value) != 0)
|
||||
return NULL;
|
||||
|
@ -1348,8 +1347,8 @@ delattr(x, 'y') is equivalent to ``del x.y''
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_delattr_impl(PyModuleDef *module, PyObject *obj, PyObject *name)
|
||||
/*[clinic end generated code: output=ef653e698a0b4187 input=db16685d6b4b9410]*/
|
||||
builtin_delattr_impl(PyObject *module, PyObject *obj, PyObject *name)
|
||||
/*[clinic end generated code: output=85134bc58dff79fa input=db16685d6b4b9410]*/
|
||||
{
|
||||
if (PyObject_SetAttr(obj, name, (PyObject *)NULL) != 0)
|
||||
return NULL;
|
||||
|
@ -1371,8 +1370,8 @@ reverse is not necessarily true.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_hash(PyModuleDef *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=1f32ff154c1f751a input=58c48be822bf9c54]*/
|
||||
builtin_hash(PyObject *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=237668e9d7688db7 input=58c48be822bf9c54]*/
|
||||
{
|
||||
Py_hash_t x;
|
||||
|
||||
|
@ -1396,8 +1395,8 @@ Return the hexadecimal representation of an integer.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_hex(PyModuleDef *module, PyObject *number)
|
||||
/*[clinic end generated code: output=618489ce3cbc5858 input=e645aff5fc7d540e]*/
|
||||
builtin_hex(PyObject *module, PyObject *number)
|
||||
/*[clinic end generated code: output=e46b612169099408 input=e645aff5fc7d540e]*/
|
||||
{
|
||||
return PyNumber_ToBase(number, 16);
|
||||
}
|
||||
|
@ -1440,8 +1439,8 @@ Return the number of items in a container.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_len(PyModuleDef *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=8e5837b6f81d915b input=bc55598da9e9c9b5]*/
|
||||
builtin_len(PyObject *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=fa7a270d314dfb6c input=bc55598da9e9c9b5]*/
|
||||
{
|
||||
Py_ssize_t res;
|
||||
|
||||
|
@ -1463,8 +1462,8 @@ covered by any backwards compatibility guarantees.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_locals_impl(PyModuleDef *module)
|
||||
/*[clinic end generated code: output=8b5a41f12e19d13a input=7874018d478d5c4b]*/
|
||||
builtin_locals_impl(PyObject *module)
|
||||
/*[clinic end generated code: output=b46c94015ce11448 input=7874018d478d5c4b]*/
|
||||
{
|
||||
PyObject *d;
|
||||
|
||||
|
@ -1622,8 +1621,8 @@ Return the octal representation of an integer.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_oct(PyModuleDef *module, PyObject *number)
|
||||
/*[clinic end generated code: output=18f701bc6d8f804a input=ad6b274af4016c72]*/
|
||||
builtin_oct(PyObject *module, PyObject *number)
|
||||
/*[clinic end generated code: output=40a34656b6875352 input=ad6b274af4016c72]*/
|
||||
{
|
||||
return PyNumber_ToBase(number, 8);
|
||||
}
|
||||
|
@ -1639,8 +1638,8 @@ Return the Unicode code point for a one-character string.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_ord(PyModuleDef *module, PyObject *c)
|
||||
/*[clinic end generated code: output=04fd27272d9462f6 input=3064e5d6203ad012]*/
|
||||
builtin_ord(PyObject *module, PyObject *c)
|
||||
/*[clinic end generated code: output=4fa5e87a323bae71 input=3064e5d6203ad012]*/
|
||||
{
|
||||
long ord;
|
||||
Py_ssize_t size;
|
||||
|
@ -1699,8 +1698,8 @@ invoked using the three argument form.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_pow_impl(PyModuleDef *module, PyObject *x, PyObject *y, PyObject *z)
|
||||
/*[clinic end generated code: output=1fba268adba9b45f input=653d57d38d41fc07]*/
|
||||
builtin_pow_impl(PyObject *module, PyObject *x, PyObject *y, PyObject *z)
|
||||
/*[clinic end generated code: output=50a14d5d130d404b input=653d57d38d41fc07]*/
|
||||
{
|
||||
return PyNumber_Power(x, y, z);
|
||||
}
|
||||
|
@ -1818,8 +1817,8 @@ On *nix systems, readline is used if available.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_input_impl(PyModuleDef *module, PyObject *prompt)
|
||||
/*[clinic end generated code: output=b77731f59e1515c4 input=5e8bb70c2908fe3c]*/
|
||||
builtin_input_impl(PyObject *module, PyObject *prompt)
|
||||
/*[clinic end generated code: output=83db5a191e7a0d60 input=5e8bb70c2908fe3c]*/
|
||||
{
|
||||
PyObject *fin = _PySys_GetObjectId(&PyId_stdin);
|
||||
PyObject *fout = _PySys_GetObjectId(&PyId_stdout);
|
||||
|
@ -2005,8 +2004,8 @@ For many object types, including most builtins, eval(repr(obj)) == obj.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_repr(PyModuleDef *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=dc41784fa4341834 input=1c9e6d66d3e3be04]*/
|
||||
builtin_repr(PyObject *module, PyObject *obj)
|
||||
/*[clinic end generated code: output=7ed3778c44fd0194 input=1c9e6d66d3e3be04]*/
|
||||
{
|
||||
return PyObject_Repr(obj);
|
||||
}
|
||||
|
@ -2175,8 +2174,8 @@ reject non-numeric types.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_sum_impl(PyModuleDef *module, PyObject *iterable, PyObject *start)
|
||||
/*[clinic end generated code: output=33655b248b21d581 input=3b5b7a9d7611c73a]*/
|
||||
builtin_sum_impl(PyObject *module, PyObject *iterable, PyObject *start)
|
||||
/*[clinic end generated code: output=df758cec7d1d302f input=3b5b7a9d7611c73a]*/
|
||||
{
|
||||
PyObject *result = start;
|
||||
PyObject *temp, *item, *iter;
|
||||
|
@ -2352,9 +2351,9 @@ or ...`` etc.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_isinstance_impl(PyModuleDef *module, PyObject *obj,
|
||||
builtin_isinstance_impl(PyObject *module, PyObject *obj,
|
||||
PyObject *class_or_tuple)
|
||||
/*[clinic end generated code: output=f960b7c12dbbeda0 input=ffa743db1daf7549]*/
|
||||
/*[clinic end generated code: output=6faf01472c13b003 input=ffa743db1daf7549]*/
|
||||
{
|
||||
int retval;
|
||||
|
||||
|
@ -2380,9 +2379,9 @@ or ...`` etc.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
builtin_issubclass_impl(PyModuleDef *module, PyObject *cls,
|
||||
builtin_issubclass_impl(PyObject *module, PyObject *cls,
|
||||
PyObject *class_or_tuple)
|
||||
/*[clinic end generated code: output=8b012a151940bbf2 input=af5f35e9ceaddaf6]*/
|
||||
/*[clinic end generated code: output=358412410cd7a250 input=af5f35e9ceaddaf6]*/
|
||||
{
|
||||
int retval;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue