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: Python Docs: 6.6.4. Mutable Sequence Types
Type: Stage: resolved
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: ezio.melotti, georg.brandl, mkesper
Priority: normal Keywords:

Created on 2009-07-17 13:14 by mkesper, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg90623 - (view) Author: Michael Kesper (mkesper) Date: 2009-07-17 13:14
In http://docs.python.org/library/stdtypes.html#mutable-sequence-types
s.pop([i]) is listed. Correct would be:
s.pop(i)
msg90624 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2009-07-17 13:20
The [] here mean that i is optional, the note (6) clarifies that its
default value is -1. Closing as invalid.
History
Date User Action Args
2022-04-11 14:56:51adminsetgithub: 50752
2009-07-17 13:20:11ezio.melottisetstatus: open -> closed

nosy: + ezio.melotti
messages: + msg90624

resolution: not a bug
stage: resolved
2009-07-17 13:14:35mkespercreate