SF #1615701:  make d.update(m) honor __getitem__() and keys() in dict subclasses
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 5a5f860..901e333 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1306,7 +1306,7 @@
 		return -1;
 	}
 	mp = (dictobject*)a;
-	if (PyDict_Check(b)) {
+	if (PyDict_CheckExact(b)) {
 		other = (dictobject*)b;
 		if (other == mp || other->ma_used == 0)
 			/* a.update(a) or a.update({}); nothing to do */