[issue44397] Add Linked Linked module

2021-06-11 Thread Jelle Zijlstra


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
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44397] Add Linked Linked module

2021-06-11 Thread Dennis Sweeney


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 to do that you can't do already with a deque?

--
nosy: +Dennis Sweeney

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue44397] Add Linked Linked module

2021-06-11 Thread Ajith Ramachandran


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
title: Add Linked Linked module
type: enhancement
versions: Python 3.11

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com