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.

Author mark-gluzman
Recipients docs@python, mark-gluzman
Date 2021-07-27.23:23:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627428187.16.0.834558477955.issue44754@roundup.psfhosted.org>
In-reply-to
Content
Python documentation: v.3.9.6 
The Python Standard Library >> Built-in Types >> Mutable Sequence Types

The table says that 'pop' operation should be written as 
s.pop([i]) 

The right way to do it is 
s.pop(i)
History
Date User Action Args
2021-07-27 23:23:07mark-gluzmansetrecipients: + mark-gluzman, docs@python
2021-07-27 23:23:07mark-gluzmansetmessageid: <1627428187.16.0.834558477955.issue44754@roundup.psfhosted.org>
2021-07-27 23:23:07mark-gluzmanlinkissue44754 messages
2021-07-27 23:23:07mark-gluzmancreate