python-llist icon indicating copy to clipboard operation
python-llist copied to clipboard

Linked list extension module for Python

Results 6 python-llist issues
Sort by recently updated
recently updated
newest added

It would be nice if there was a reverse iterator, so I don't need to implement one by myself. Thanks!

Hey bud, This patch adds .pop(idx) to both linked and double-linked list implementation. This follows the same pattern as the standard python list, where an index can be provided (positive...

Hi! I've been building `llist` for conda-forge. We are [preparing for Python 3.12](https://github.com/conda-forge/llist-feedstock/pull/9) and the test suite is failing. It seems like `test_cyclic_list_destruction_does_not_release_extra_None_refs` ends up in an infinite (or at...

For reproduce * Download Python 3.11 * ./configure --with-pydebug * make * run example or run tests with this python ```(python) from llist import dllist, dllistnode import sys original_ref_count =...

For some reason VScode doesn't offer any intellisense for llist. Is this a bug in my setup or because there are no type hints and Pylance can't analyse the way...