Get rid of __defined__ and tp_defined -- there's no need to
distinguish __dict__ and __defined__ any more.  In the C structure,
tp_cache takes its place -- but this hasn't been implemented yet.
diff --git a/Include/object.h b/Include/object.h
index a943c00..c565fbe 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -288,7 +288,7 @@
 	inquiry tp_is_gc; /* For PyObject_IS_GC */
 	PyObject *tp_bases;
 	PyObject *tp_mro; /* method resolution order */
-	PyObject *tp_defined;
+	PyObject *tp_cache;
 	PyObject *tp_subclasses;
 	PyObject *tp_weaklist;