diff options
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r-- | Include/objimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index a168c8b47b..ed521fe556 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -238,7 +238,7 @@ PyAPI_FUNC(long) PyGC_Collect(void); #define PyObject_IS_GC(o) (PyType_IS_GC((o)->ob_type) && \ ((o)->ob_type->tp_is_gc == NULL || (o)->ob_type->tp_is_gc(o))) -PyAPI_FUNC(PyVarObject *) _PyObject_GC_Resize(PyVarObject *, int); +PyAPI_FUNC(PyVarObject *) _PyObject_GC_Resize(PyVarObject *, Py_ssize_t); #define PyObject_GC_Resize(type, op, n) \ ( (type *) _PyObject_GC_Resize((PyVarObject *)(op), (n)) ) |