mirror of https://github.com/python/cpython.git
Update Argument Clinic generated code for bpo-29878. (#1001)
This commit is contained in:
parent
5affd23e6f
commit
bae6881b42
|
@ -19,7 +19,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||||
PyObject *return_value = NULL;
|
PyObject *return_value = NULL;
|
||||||
static const char * const _keywords[] = {"real", "imag", NULL};
|
static const char * const _keywords[] = {"real", "imag", NULL};
|
||||||
static _PyArg_Parser _parser = {"|OO:complex", _keywords, 0};
|
static _PyArg_Parser _parser = {"|OO:complex", _keywords, 0};
|
||||||
PyObject *r = Py_False;
|
PyObject *r = _PyLong_Zero;
|
||||||
PyObject *i = NULL;
|
PyObject *i = NULL;
|
||||||
|
|
||||||
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
|
if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser,
|
||||||
|
@ -31,4 +31,4 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||||
exit:
|
exit:
|
||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
/*[clinic end generated code: output=74035493480ab5e5 input=a9049054013a1b77]*/
|
/*[clinic end generated code: output=5017b2458bdc4ecd input=a9049054013a1b77]*/
|
||||||
|
|
|
@ -171,7 +171,7 @@ static PyObject *
|
||||||
float_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
float_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
|
||||||
{
|
{
|
||||||
PyObject *return_value = NULL;
|
PyObject *return_value = NULL;
|
||||||
PyObject *x = Py_False;
|
PyObject *x = _PyLong_Zero;
|
||||||
|
|
||||||
if ((type == &PyFloat_Type) &&
|
if ((type == &PyFloat_Type) &&
|
||||||
!_PyArg_NoKeywords("float", kwargs)) {
|
!_PyArg_NoKeywords("float", kwargs)) {
|
||||||
|
@ -313,4 +313,4 @@ float___format__(PyObject *self, PyObject *arg)
|
||||||
exit:
|
exit:
|
||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
/*[clinic end generated code: output=a3dafb0f6c6f1514 input=a9049054013a1b77]*/
|
/*[clinic end generated code: output=dc6b0b67a7e40c93 input=a9049054013a1b77]*/
|
||||||
|
|
|
@ -946,7 +946,7 @@ This is equivalent to (real + imag*1j) where imag defaults to 0.
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
complex_new_impl(PyTypeObject *type, PyObject *r, PyObject *i)
|
complex_new_impl(PyTypeObject *type, PyObject *r, PyObject *i)
|
||||||
/*[clinic end generated code: output=b6c7dd577b537dc1 input=e3d6b77ddcf280da]*/
|
/*[clinic end generated code: output=b6c7dd577b537dc1 input=6f6b0bedba29bcb5]*/
|
||||||
{
|
{
|
||||||
PyObject *tmp;
|
PyObject *tmp;
|
||||||
PyNumberMethods *nbr, *nbi = NULL;
|
PyNumberMethods *nbr, *nbi = NULL;
|
||||||
|
|
|
@ -1619,7 +1619,7 @@ Convert a string or number to a floating point number, if possible.
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
float_new_impl(PyTypeObject *type, PyObject *x)
|
float_new_impl(PyTypeObject *type, PyObject *x)
|
||||||
/*[clinic end generated code: output=ccf1e8dc460ba6ba input=c98d8e811ad2037a]*/
|
/*[clinic end generated code: output=ccf1e8dc460ba6ba input=540ee77c204ff87a]*/
|
||||||
{
|
{
|
||||||
if (type != &PyFloat_Type)
|
if (type != &PyFloat_Type)
|
||||||
return float_subtype_new(type, x); /* Wimp out */
|
return float_subtype_new(type, x); /* Wimp out */
|
||||||
|
|
Loading…
Reference in New Issue