Patch by Keir Mierle so that sets can be compared to other objects that know
how to compare themselves to sets.  (Prep work for making dict views more
set-like.)
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 7ff27b1..079f404 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1607,12 +1607,8 @@
 	PyObject *r1, *r2;
 
 	if(!PyAnySet_Check(w)) {
-		if (op == Py_EQ)
-			Py_RETURN_FALSE;
-		if (op == Py_NE)
-			Py_RETURN_TRUE;
-		PyErr_SetString(PyExc_TypeError, "can only compare to a set");
-		return NULL;
+		Py_INCREF(Py_NotImplemented);
+		return Py_NotImplemented;
 	}
 	switch (op) {
 	case Py_EQ: