python-cachetools 5.3.0-2 source package in Ubuntu

Changelog

python-cachetools (5.3.0-2) unstable; urgency=medium

  * Team upload.
  * Upload to unstable.
  * Clean correctly.

 -- Stefano Rivera <email address hidden>  Fri, 16 Jun 2023 19:55:21 -0400

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
Noble release main misc
Mantic release main misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_5.3.0-2.dsc 1.5 KiB 754052506ad8134e9316b2344535441196ae9cf6a2e7e74d2f63cde3bf45a18f
python-cachetools_5.3.0.orig.tar.gz 24.9 KiB 9fb778a9244dbed2711d2a07051be6f5b070820e475dc2b72552ca91cc2d4f2a
python-cachetools_5.3.0-2.debian.tar.xz 3.9 KiB 537224efd678b547eaad09e106c0764e5c687faae8cfa5c3fd6dc5ae4a6c86b5

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)