From bae6881b4215b2613ad08ef0dc7bed7743c2b8cc Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 5 Apr 2017 12:00:42 +0300 Subject: Update Argument Clinic generated code for bpo-29878. (#1001) --- Objects/clinic/complexobject.c.h | 4 ++-- Objects/clinic/floatobject.c.h | 4 ++-- Objects/complexobject.c | 2 +- Objects/floatobject.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Objects/clinic/complexobject.c.h b/Objects/clinic/complexobject.c.h index b0b4c0e..0cbfb79 100644 --- a/Objects/clinic/complexobject.c.h +++ b/Objects/clinic/complexobject.c.h @@ -19,7 +19,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) PyObject *return_value = NULL; static const char * const _keywords[] = {"real", "imag", NULL}; static _PyArg_Parser _parser = {"|OO:complex", _keywords, 0}; - PyObject *r = Py_False; + PyObject *r = _PyLong_Zero; PyObject *i = NULL; if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser, @@ -31,4 +31,4 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) exit: return return_value; } -/*[clinic end generated code: output=74035493480ab5e5 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=5017b2458bdc4ecd input=a9049054013a1b77]*/ diff --git a/Objects/clinic/floatobject.c.h b/Objects/clinic/floatobject.c.h index d2680b5..d9ac39d 100644 --- a/Objects/clinic/floatobject.c.h +++ b/Objects/clinic/floatobject.c.h @@ -171,7 +171,7 @@ static PyObject * float_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) { PyObject *return_value = NULL; - PyObject *x = Py_False; + PyObject *x = _PyLong_Zero; if ((type == &PyFloat_Type) && !_PyArg_NoKeywords("float", kwargs)) { @@ -313,4 +313,4 @@ float___format__(PyObject *self, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=a3dafb0f6c6f1514 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=dc6b0b67a7e40c93 input=a9049054013a1b77]*/ diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 9a416a8..3bf37ee 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -946,7 +946,7 @@ This is equivalent to (real + imag*1j) where imag defaults to 0. static PyObject * 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; PyNumberMethods *nbr, *nbi = NULL; diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 87af0ba..8c4fe74 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -1619,7 +1619,7 @@ Convert a string or number to a floating point number, if possible. static PyObject * 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) return float_subtype_new(type, x); /* Wimp out */ -- cgit v0.12