From 90d47cb46c5845d15bc4fdc0590e19e58e894e0c Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Fri, 24 Apr 2009 13:14:07 +0000 Subject: [PATCH] Fix missing 'return NULL' --- Objects/complexobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 894f7966a4b..7ebafa78239 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 *