[docs] [issue32500] PySequence_Length() raises TypeError on dict type

Serhiy Storchaka report at bugs.python.org
Sat Jan 6 17:54:16 EST 2018


Serhiy Storchaka <storchaka+cpython at gmail.com> added the comment:

Note that many other PySequence_* functions support only sequences. For example PySequence_Count(o1, o2) is the equivalent of the Python expression o1 + o2 only if o1 is a sequence. If pass integer objects to PySequence_Count() it will return an error.

I would remove "do not" from the documentation. Or even the whole "For objects that do not provide sequence protocol" since this is implied.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue32500>
_______________________________________


More information about the docs mailing list