This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: In the glossary there is a small typo about __len__() in the sequence definition
Type: Stage: resolved
Components: Documentation Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, py.user, python-dev
Priority: normal Keywords:

Created on 2012-10-04 22:46 by py.user, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg172013 - (view) Author: py.user (py.user) * Date: 2012-10-04 22:46
http://docs.python.org/py3k/glossary.html#term-sequence

"and defines a len() method that returns the length of the sequence" 

change to

"and defines a __len__() special method that returns the length of the sequence"
msg172066 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-05 10:27
New changeset 7cf0d8b2744b by Andrew Svetlov in branch '3.2':
Issue #16138: fix typo.
http://hg.python.org/cpython/rev/7cf0d8b2744b

New changeset a093d39fdda4 by Andrew Svetlov in branch '3.3':
Merge issue #16138: fix typo.
http://hg.python.org/cpython/rev/a093d39fdda4

New changeset cbb9b5dcb88a by Andrew Svetlov in branch 'default':
Merge issue #16138: fix typo.
http://hg.python.org/cpython/rev/cbb9b5dcb88a
msg172067 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-10-05 10:28
Fixed. Thanks to py.user
History
Date User Action Args
2022-04-11 14:57:36adminsetgithub: 60342
2012-10-05 10:28:19asvetlovsetstatus: open -> closed

nosy: + asvetlov
messages: + msg172067

resolution: fixed
stage: resolved
2012-10-05 10:27:15python-devsetnosy: + python-dev
messages: + msg172066
2012-10-04 22:46:19py.usercreate