From: Mark Dickinson Date: Fri, 24 Apr 2009 13:14:07 +0000 (+0000) Subject: Fix missing 'return NULL' X-Git-Tag: v2.7a1~1426 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90d47cb46c5845d15bc4fdc0590e19e58e894e0c;p=python Fix missing 'return NULL' --- diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 894f7966a4..7ebafa7823 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -1027,7 +1027,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) overflow: PyErr_SetString(PyExc_OverflowError, "complex() arg overflow"); - + return NULL; } static PyObject *