Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.

This commit is contained in:
Neal Norwitz 2006-03-04 18:41:19 +00:00
parent b62c433d71
commit 8c49c82889
2 changed files with 2 additions and 2 deletions

View file

@ -1958,7 +1958,7 @@ PyFrozenSet_New(PyObject *iterable)
return result;
}
int
Py_ssize_t
PySet_Size(PyObject *anyset)
{
if (!PyAnySet_Check(anyset)) {