python-cachetools 4.2.1-1 source package in Ubuntu

Changelog

python-cachetools (4.2.1-1) unstable; urgency=medium

  * New upstream release.

 -- Christian Kastner <email address hidden>  Wed, 27 Jan 2021 01:37:59 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_4.2.1-1.dsc 2.0 KiB 8afa68699b2c5852a0cef95c6e88bc5e02b2cceb395ab210f3b2beb26e52b9dc
python-cachetools_4.2.1.orig.tar.gz 21.6 KiB 077bb90fd7937f6628931e6b0b0e86e43fab5475b35d3b3729d8102124d8509c
python-cachetools_4.2.1-1.debian.tar.xz 3.7 KiB 03ba869377f0e8d1cd0a9022789580ed28afc3ade2796d0c995b9abc8bcb818d

Available diffs

No changes file available.

Binary packages built by this source

python3-cachetools: extensible memoizing collections and decorators for Python 3

 This Python 3 module provides various memoizing collections and decorators,
 including variants of the Python 3 Standard Library's functools.lru_cache()
 function decorator.
 .
 The supported cache algorithms are:
 .
  * First in first out (FIFO)
  * Least recently used (LRU)
  * Most recently used (MRU)
  * Least frequently used (LFU)
  * Random replacement (RR)
  * Per-item time-to-live (TTL)
  * Time aware least recently used (TLRU)