function_call(): Remove a bogus (and I mean *really* bogus) call to
Py_DECREF(arg) after the PyErr_NoMemory() call.  (Armin Rigo, SF bug
#488477.)
diff --git a/Objects/funcobject.c b/Objects/funcobject.c
index d978c3f..ee016df 100644
--- a/Objects/funcobject.c
+++ b/Objects/funcobject.c
@@ -358,7 +358,6 @@
 		k = PyMem_NEW(PyObject *, 2*nk);
 		if (k == NULL) {
 			PyErr_NoMemory();
-			Py_DECREF(arg);
 			return NULL;
 		}
 		pos = i = 0;