Speedup set.update by using the override mode for PyDict_Merge().
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 4fbb645..6070fb6 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -15,7 +15,7 @@
 	PyObject *item, *data, *it;
 
 	if (PyAnySet_Check(other)) {
-		if (PyDict_Merge(so->data, ((PySetObject *)other)->data, 0) == -1) 
+		if (PyDict_Merge(so->data, ((PySetObject *)other)->data, 1) == -1) 
 			return NULL;
 		Py_RETURN_NONE;
 	}