8000 Update Argument Clinic generated code for bpo-29878. by serhiy-storchaka · Pull Request #1001 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Objects/clinic/complexobject.c.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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]*/
4 changes: 2 additions & 2 deletions Objects/clinic/floatobject.c.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down Expand Up @@ -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]*/
2 changes: 1 addition & 1 deletion Objects/complexobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Objects/floatobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
0