Commit ecaa372f authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

bpo-32500: Correct the documentation for PySequence_Size() and PySequence_Length() (GH-5767)


Dropped the part that says: "For objects that do not provide sequence protocol".
(cherry picked from commit 7a1e1786)
Co-authored-by: default avatarZackery Spytz <zspytz@gmail.com>
parent b7c1a94f
......@@ -17,9 +17,8 @@ Sequence Protocol
.. index:: builtin: len
Returns the number of objects in sequence *o* on success, and ``-1`` on failure.
For objects that do not provide sequence protocol, this is equivalent to the
Python expression ``len(o)``.
Returns the number of objects in sequence *o* on success, and ``-1`` on
failure. This is equivalent to the Python expression ``len(o)``.
.. versionchanged:: 2.5
These functions returned an :c:type:`int` type. This might require
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment