diff options
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index e7d0898..175933a 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -532,20 +532,6 @@ complex_float(v) return NULL; } - -static object * -complex_new(self, args) - object *self; - object *args; -{ - Py_complex cval; - - cval.imag = 0.; - if (!PyArg_ParseTuple(args, "d|d", &cval.real, &cval.imag)) - return NULL; - return newcomplexobject(cval); -} - static object * complex_conjugate(self) object *self; |