Metadata-Version: 1.2
Name: backports.functools-lru-cache
Version: 1.2.1
Summary: backports.functools_lru_cache
Home-page: https://github.com/jaraco/backports.functools_lru_cache
Author: Raymond Hettinger
Author-email: raymond.hettinger@gmail.com
Maintainer: Jason R. Coombs
Maintainer-email: jaraco@jaraco.com
License: UNKNOWN
Description: backports.functools_lru_cache
        =============================
        
        Backport of functools.lru_cache from Python 3.3 as published at `ActiveState
        <http://code.activestate.com/recipes/578078/>`_.
        
        Usage
        -----
        
        Consider using this technique for importing the 'lru_cache' function::
        
            try:
                from functools import lru_cache
            except ImportError:
                from backports.functools_lru_cache import lru_cache
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
