[Python-checkins] r71827 - python/trunk/Objects/complexobject.c

mark.dickinson python-checkins at python.org
Fri Apr 24 15:14:07 CEST 2009


Author: mark.dickinson
Date: Fri Apr 24 15:14:07 2009
New Revision: 71827

Log:
Fix missing 'return NULL'


Modified:
   python/trunk/Objects/complexobject.c

Modified: python/trunk/Objects/complexobject.c
==============================================================================
--- python/trunk/Objects/complexobject.c	(original)
+++ python/trunk/Objects/complexobject.c	Fri Apr 24 15:14:07 2009
@@ -1027,7 +1027,7 @@
   overflow:
 	PyErr_SetString(PyExc_OverflowError,
 			"complex() arg overflow");
-
+	return NULL;
 }
 
 static PyObject *


More information about the Python-checkins mailing list