New submission from Mark Gluzman <mg2...@cornell.edu>:

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)

----------
assignee: docs@python
components: Documentation
messages: 398329
nosy: docs@python, mark-gluzman
priority: normal
severity: normal
status: open
title: Documentation for pop in Built-in Types
versions: Python 3.9

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44754>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to