#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
diff --git a/Include/cStringIO.h b/Include/cStringIO.h
index 50f8cbe..d22b9eb 100644
--- a/Include/cStringIO.h
+++ b/Include/cStringIO.h
@@ -60,9 +60,9 @@
/* These can be used to test if you have one */
#define PycStringIO_InputCheck(O) \
- (Py_Type(O)==PycStringIO->InputType)
+ (Py_TYPE(O)==PycStringIO->InputType)
#define PycStringIO_OutputCheck(O) \
- (Py_Type(O)==PycStringIO->OutputType)
+ (Py_TYPE(O)==PycStringIO->OutputType)
#ifdef __cplusplus
}