components/python/python26/patches/Python26-11-dlpi.patch
changeset 118 049f3b3d6903
parent 115 c360825c3a3f
--- a/components/python/python26/patches/Python26-11-dlpi.patch	Thu Mar 03 12:21:51 2011 -0800
+++ b/components/python/python26/patches/Python26-11-dlpi.patch	Fri Mar 04 13:19:22 2011 -0800
@@ -1128,14 +1128,14 @@
 +	PyObject *list = (PyObject *)arg;
 +
 +	if ((list == NULL) || !PyList_Check(list))
-+		return (_B_FALSE);
++		return (B_FALSE);
 +
 +	linkname = Py_BuildValue("s", name);
 +	if (PyList_Append(list, linkname) == -1)
-+		return (_B_TRUE);
++		return (B_TRUE);
 +
 +	Py_DECREF(linkname);
-+	return (_B_FALSE);
++	return (B_FALSE);
 +}
 +
 +PyDoc_STRVAR(listlink_doc,