From: Andrew Svetlov Date: Fri, 5 Oct 2012 10:26:10 +0000 (+0300) Subject: Issue #16138: fix typo. X-Git-Tag: v3.2.4rc1~468 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8cf1cc498f648b548823075f6f930e0b10aa1abb;p=thirdparty%2FPython%2Fcpython.git Issue #16138: fix typo. --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 7cd990528751..215135073a30 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -562,7 +562,7 @@ Glossary sequence An :term:`iterable` which supports efficient element access using integer indices via the :meth:`__getitem__` special method and defines a - :meth:`len` method that returns the length of the sequence. + :meth:`__len__` method that returns the length of the sequence. Some built-in sequence types are :class:`list`, :class:`str`, :class:`tuple`, and :class:`bytes`. Note that :class:`dict` also supports :meth:`__getitem__` and :meth:`__len__`, but is considered a