GitXplorerGitXplorer
j

backports.functools_lru_cache

public
37 stars
13 forks
0 issues

Commits

List of commits on branch main.
Verified
9ad9c01d0aeaf4215bd14bf948a17bb6fe7660c2

Merge https://github.com/jaraco/skeleton

jjaraco committed 8 days ago
Verified
3fe8c5ba792fd58a5a24eef4e8a845f3b5dd6c2c

Add Python 3.13 and 3.14 into the matrix. (jaraco/skeleton#146)

jjaraco committed 8 days ago
Verified
81b766c06cc83679c4a04c2bfa6d2c8cc559bf33

Fix an incompatibility (and source of merge conflicts) with projects using Ruff/isort.

AAvasam committed 8 days ago
Verified
a675458e1a7d6ae81d0d441338a74dc98ffc5a61

Allow the workflow to be triggered manually.

jjaraco committed 13 days ago
Verified
1a6e38c0bfccd18a01deaca1491bcde3e778404c

Remove workaround for sphinx-contrib/sphinx-lint#83

jjaraco committed 20 days ago
Verified
f38fd0b5c952f6441f4134844e0820d2b9cb6f19

Merge https://github.com/jaraco/skeleton

jjaraco committed 21 days ago

README

The README file for this repository.

.. image:: https://img.shields.io/pypi/v/backports.functools_lru_cache.svg :target: https://pypi.org/project/backports.functools_lru_cache

.. image:: https://img.shields.io/pypi/pyversions/backports.functools_lru_cache.svg

.. image:: https://github.com/jaraco/backports.functools_lru_cache/actions/workflows/main.yml/badge.svg :target: https://github.com/jaraco/backports.functools_lru_cache/actions?query=workflow%3A%22tests%22 :alt: tests

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json :target: https://github.com/astral-sh/ruff :alt: Ruff

.. image:: https://readthedocs.org/projects/backportsfunctools_lru_cache/badge/?version=latest :target: https://backportsfunctools_lru_cache.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/badge/skeleton-2024-informational :target: https://blog.jaraco.com/skeleton

.. image:: https://tidelift.com/badges/package/pypi/backports.functools_lru_cache :target: https://tidelift.com/subscription/pkg/pypi-backports.functools_lru_cache?utm_source=pypi-backports.functools_lru_cache&utm_medium=readme

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

For Enterprise

Available as part of the Tidelift Subscription.

This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.

Learn more <https://tidelift.com/subscription/pkg/pypi-backports.functools_lru_cache?utm_source=pypi-backports.functools_lru_cache&utm_medium=referral&utm_campaign=github>_.