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: collections page doesn't mention that deques are mutable
Type: Stage:
Components: Documentation Versions: Python 3.6, Python 3.2, Python 3.3, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, lf, rhettinger
Priority: normal Keywords:

Created on 2015-05-03 18:58 by lf, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (1)
msg242537 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2015-05-04 00:09
Mutability is conferred by the presence of mutating methods.  Deques are documented to have append, pop, extend, appendleft, popleft, extendleft, and rotate.   Also the examples all show mutations.
History
Date User Action Args
2022-04-11 14:58:16adminsetgithub: 68309
2015-05-04 00:09:40rhettingersetstatus: open -> closed

nosy: + rhettinger
messages: + msg242537

resolution: not a bug
2015-05-03 18:58:37lfsettitle: collections page doesn't -> collections page doesn't mention that deques are mutable
2015-05-03 18:58:14lfcreate