Metadata-Version: 1.1
Name: weakreflist
Version: 0.2
Summary: A WeakList class for storing objects using weak references in a list.
Home-page: http://www.python.org/pypi/weakreflist
Author: Grégory Salvan
Author-email: apieum@gmail.com
License: LGPL
Description: ===========
        weakreflist
        ===========
        ---------------------------------------------------------------------
        A WeakList class for storing objects using weak references in a list.
        ---------------------------------------------------------------------
        
        *usage*
         see tests::
         
           # cd weakreflist
           # nosetests --with-spec --spec-color ./
         
           Weakref list
           - if a weakref already stored it reuse it
           - it can remove a value
           - it is instance of list
           - it knows if it contains an object
           - it returns the index of a value
           - it returns value and not a ref
           - it store a weakref ref
           - it support addition
           - it support iteration
           - when all object instance are deleted all ref in list are deleted
        
           ----------------------------------------------------------------------
           Ran 10 tests in 0.004s
           
           OK
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
