gituser/production/: backports-functools-lru-cache-1.6.1 metadata and description

Homepage Simple index

Backport of functools.lru_cache

author Raymond Hettinger
author_email raymond.hettinger@gmail.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python :: 2.6
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
maintainer Jason R. Coombs
maintainer_email jaraco@jaraco.com
provides_extras testing
requires_dist
  • sphinx ; extra == 'docs'
  • jaraco.packaging (>=3.2) ; extra == 'docs'
  • rst.linker (>=1.9) ; extra == 'docs'
  • pytest (!=3.7.3,>=3.5) ; extra == 'testing'
  • pytest-checkdocs (>=1.2.3) ; extra == 'testing'
  • pytest-flake8 ; extra == 'testing'
  • pytest-black-multipy ; extra == 'testing'
  • pytest-cov ; extra == 'testing'
requires_python >=2.6
File Tox results History
backports.functools_lru_cache-1.6.1-py2.py3-none-any.whl
Size
6 KB
Type
Python Wheel
Python
2.7
https://img.shields.io/pypi/v/backports.functools_lru_cache.svg https://img.shields.io/pypi/pyversions/backports.functools_lru_cache.svg https://img.shields.io/travis/jaraco/backports.functools_lru_cache/master.svg Code style: Black https://readthedocs.org/projects/backportsfunctools_lru_cache/badge/?version=latest https://tidelift.com/badges/package/pypi/backports.functools_lru_cache

Backport of functools.lru_cache from Python 3.3 as published at ActiveState.

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

Security Contact

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.