deuglify
diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c
index 36626b2..4326730 100644
--- a/Objects/memoryobject.c
+++ b/Objects/memoryobject.c
@@ -371,8 +371,9 @@
         return Py_None;
     }
     intTuple = PyTuple_New(len);
-    if (!intTuple) return NULL;
-    for(i=0; i<len; i++) {
+    if (!intTuple)
+        return NULL;
+    for (i=0; i<len; i++) {
         o = PyLong_FromSsize_t(vals[i]);
         if (!o) {
             Py_DECREF(intTuple);