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.

Author steven.daprano
Recipients SamUnimelb, steven.daprano
Date 2020-12-05.08:11:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1607155896.23.0.625483313145.issue42575@roundup.psfhosted.org>
In-reply-to
Content
The class you have provided is awkward to use, random access is inefficient, it is not compatible with lists or offer a sequence API, it's not subscriptable or iterable, the API exposes an unnecessary "Proxy" class, and the API is more like what I would expect from Java code than Python code.

But even if every one of those problems was fixed, there is still the question, why would somebody choose this LinkedList instead of the fast, efficient built-in list? What advantages does this have?
History
Date User Action Args
2020-12-05 08:11:36steven.dapranosetrecipients: + steven.daprano, SamUnimelb
2020-12-05 08:11:36steven.dapranosetmessageid: <1607155896.23.0.625483313145.issue42575@roundup.psfhosted.org>
2020-12-05 08:11:36steven.dapranolinkissue42575 messages
2020-12-05 08:11:35steven.dapranocreate