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: Documentation typo (2.x only) for deque.remove
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, lurchman
Priority: normal Keywords: patch

Created on 2018-02-18 17:59 by lurchman, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5763 merged rhettinger, 2018-02-19 23:31
Messages (2)
msg312319 - (view) Author: Andrew Scheller (lurchman) * Date: 2018-02-18 17:59
https://docs.python.org/2/library/collections.html#collections.deque.remove says "Removed the first occurrence of value."
I believe the "Removed" should be changed to just "Remove" ?

(this has already been fixed in the 3.x documentation https://docs.python.org/3/library/collections.html#collections.deque.remove )
msg312320 - (view) Author: Andrew Scheller (lurchman) * Date: 2018-02-18 18:13
Looks like https://bugs.python.org/issue24269 is where this got fixed for the 3.x documentation ;-)
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 77051
2018-02-19 23:42:59rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-02-19 23:31:29rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request5541
2018-02-18 18:15:32lurchmansettype: enhancement
2018-02-18 18:13:46lurchmansetmessages: + msg312320
2018-02-18 17:59:36lurchmancreate