Metadata-Version: 1.0
Name: llist
Version: 0.3
Summary: Linked list data structures for Python
Home-page: https://github.com/ajakubek/python-llist
Author: Adam Jakubek, Rafał Gałczyński
Author-email: ajakubek@gmail.com, rafal.galczynski@gmail.com
License: MIT
Download-URL: http://pypi.python.org/pypi/llist/0.3
Description: llist - linked lists for CPython
        ================================
        
        llist is an extension module for CPython providing basic linked list
        data structures.
        Collections implemented in the llist module perform well in problems
        which rely on fast insertions and/or deletions of elements in
        the middle of a sequence.
        For this kind of workload, they can be significantly faster than
        collections.deque or standard Python lists.
        
        This extension requires CPython 2.6 or newer. Python 3.x is not supported.
        If you are looking for an implementation of linked lists in pure Python,
        visit http://github.com/rgsoda/pypy-llist/
        The pypy-llist module has the same API as this extension, but is
        significantly slower in CPython.
        
        Currently llist provides the following types of linked lists:
         - dllist - a doubly linked list
         - sllist - a singly linked list
        
        Full documentation of these classes is available at:
        http://packages.python.org/llist/
        
        To install this package, either run "pip install llist",
        or download it manually from http://pypi.python.org/pypi
        then unpack the sources and compile them with "python setup.py install".
        
        The most current development version is available at:
        https://github.com/ajakubek/python-llist/
        
        Bugs can be reported at:
        https://github.com/ajakubek/python-llist/issues
        
        This software is distributed under the MIT license.
        Please see the LICENSE file included in the package for details.
        
Keywords: linked list,list
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
