diff options
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 295f47e..7eb2777 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -659,7 +659,7 @@ float_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) if (tmp == NULL) return NULL; assert(PyFloat_Check(tmp)); - new = type->tp_alloc(type, 0);; + new = type->tp_alloc(type, 0); if (new == NULL) return NULL; ((PyFloatObject *)new)->ob_fval = ((PyFloatObject *)tmp)->ob_fval; |