commit | 8c49c82889d1af480fa159b56c0e70ef81cf6749 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sat Mar 04 18:41:19 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sat Mar 04 18:41:19 2006 +0000 |
tree | c061a11caf40a1cb30d39ca6cc4d47abcb8d6c52 | |
parent | b62c433d716c409d5a5ad0c34435bd969c6639af [diff] [blame] |
Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.
diff --git a/Objects/setobject.c b/Objects/setobject.c index 0041a10..ed3d190 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c
@@ -1958,7 +1958,7 @@ return result; } -int +Py_ssize_t PySet_Size(PyObject *anyset) { if (!PyAnySet_Check(anyset)) {