commit | 90d47cb46c5845d15bc4fdc0590e19e58e894e0c | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Fri Apr 24 13:14:07 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Fri Apr 24 13:14:07 2009 +0000 |
tree | d2b85feeb8b514e5e2c563f0f18d77b85ca8b102 | |
parent | 95bc980d9ee2aabfedb90512906247f3e3c3fdf7 [diff] [blame] |
Fix missing 'return NULL'
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 894f796..7ebafa7 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c
@@ -1027,7 +1027,7 @@ overflow: PyErr_SetString(PyExc_OverflowError, "complex() arg overflow"); - + return NULL; } static PyObject *