type_new():  Didn't compile anymore, due to change in struct memberlist
definition.  Guido, what else did you forget to check in <wink>?
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 2a9ef71..6200a83 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -926,7 +926,7 @@
 			mp->name = "__weakref__";
 			mp->type = T_OBJECT;
 			mp->offset = slotoffset;
-			mp->readonly = 1;
+			mp->flags = READONLY;
 			mp++;
 			slotoffset += sizeof(PyObject *);
 		}