Jelle Zijlstra added the comment:
Closing as a duplicate of issue42575. Adding a linked list data structure to
Python is in any case probably better discussed on the python-ideas mailing
list and then in a PEP.
--
nosy: +Jelle Zijlstra
resolution: -> duplicate
stage: -> resolved
st
Dennis Sweeney added the comment:
This issue is probably a duplicate of https://bugs.python.org/issue42575 .
In almost all use cases, a linked list can be replaced by a collections.deque,
which already uses a double linked list of blocks internally. Is there
something you need a linked list
New submission from Ajith Ramachandran :
There is a module present for queue which can also be used for a stack like
LIFO structure. But there is none for linked list.
--
components: Library (Lib)
messages: 395640
nosy: AjithRamachandran
priority: normal
severity: normal
status: open
t