summaryrefslogtreecommitdiff
path: root/Objects/complexobject.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-04-05 12:00:42 +0300
committerGitHub <noreply@github.com>2017-04-05 12:00:42 +0300
commitbae6881b4215b2613ad08ef0dc7bed7743c2b8cc (patch)
tree927679a599d42527b25585042779f78395d5e45d /Objects/complexobject.c
parent5affd23e6f42125998724787025080a24839266e (diff)
downloadcpython-git-bae6881b4215b2613ad08ef0dc7bed7743c2b8cc.tar.gz
Update Argument Clinic generated code for bpo-29878. (#1001)
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r--Objects/complexobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 9a416a873a..3bf37ee437 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;