Kaydet (Commit) bae6881b authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka Kaydeden (comit) GitHub

Update Argument Clinic generated code for bpo-29878. (#1001)

üst 5affd23e
...@@ -19,7 +19,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) ...@@ -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) ...@@ -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 * ...@@ -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) ...@@ -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. ...@@ -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. ...@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment