summaryrefslogtreecommitdiff
path: root/Include/object.h
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-01 04:02:43 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-03-01 04:02:43 +0000
commit07567211802dd6d017d72272c425538165acb163 (patch)
tree4cbd722c923f61d5fd8122dfed061b0674b5d8c5 /Include/object.h
parenta897052ac4cdc582800f69fd9bf03cc686676d88 (diff)
downloadcpython-07567211802dd6d017d72272c425538165acb163.tar.gz
Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t.
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/object.h b/Include/object.h
index 9c91373115..5db92db24e 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -77,7 +77,7 @@ whose size is determined when the object is allocated.
/* PyObject_HEAD defines the initial segment of every PyObject. */
#define PyObject_HEAD \
_PyObject_HEAD_EXTRA \
- int ob_refcnt; \
+ Py_ssize_t ob_refcnt; \
struct _typeobject *ob_type;
#define PyObject_HEAD_INIT(type) \
@@ -333,9 +333,9 @@ typedef struct _typeobject {
#ifdef COUNT_ALLOCS
/* these must be last and never explicitly initialized */
- int tp_allocs;
- int tp_frees;
- int tp_maxalloc;
+ Py_ssize_t tp_allocs;
+ Py_ssize_t tp_frees;
+ Py_ssize_t tp_maxalloc;
struct _typeobject *tp_next;
#endif
} PyTypeObject;