python-cachetools 5.3.0-1 source package in Ubuntu

Changelog

python-cachetools (5.3.0-1) experimental; urgency=medium

  * Team upload.
  * New upstream release.
  * Bump copyright years.

 -- Stefano Rivera <email address hidden>  Thu, 11 May 2023 14:50:18 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_5.3.0-1.dsc 1.5 KiB be7141c71ea160474a297caa25abe462d5cb174fcdce652dc9895451387e9d6b
python-cachetools_5.3.0.orig.tar.gz 24.9 KiB 9fb778a9244dbed2711d2a07051be6f5b070820e475dc2b72552ca91cc2d4f2a
python-cachetools_5.3.0-1.debian.tar.xz 3.9 KiB c3d89cd1aca65014e04601c4cb10d90bfbb0071cd865a3e638d4d268bb4628be

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)