diff options
Diffstat (limited to 'Doc/c-api/set.rst')
-rw-r--r-- | Doc/c-api/set.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/c-api/set.rst b/Doc/c-api/set.rst index a60ccd6..4bac96b 100644 --- a/Doc/c-api/set.rst +++ b/Doc/c-api/set.rst @@ -116,6 +116,10 @@ or :class:`frozenset` or instances of their subtypes. ``len(anyset)``. Raises a :exc:`PyExc_SystemError` if *anyset* is not a :class:`set`, :class:`frozenset`, or an instance of a subtype. + .. versionchanged:: 2.5 + This function returned an :ctype:`int`. This might require changes in + your code for properly supporting 64-bit systems. + .. cfunction:: Py_ssize_t PySet_GET_SIZE(PyObject *anyset) |