#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available.
diff --git a/Include/abstract.h b/Include/abstract.h
index 764d7d8..b7fde09 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -1051,7 +1051,7 @@
*/
#define PySequence_ITEM(o, i)\
- ( Py_Type(o)->tp_as_sequence->sq_item(o, i) )
+ ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
/* Assume tp_as_sequence and sq_item exist and that i does not
need to be corrected for a negative index
*/