python-cachetools 5.3.3-1 source package in Ubuntu

Changelog

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

  * Team upload.
  * New upstream version 5.3.3

 -- Alexandre Detiste <email address hidden>  Sun, 12 May 2024 19:55:13 +0200

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
Oracular release main misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_5.3.3-1.dsc 2.1 KiB 7334512d207e9a193c4e2b1459938141cd748450a4e138dbb5963a184951ca5c
python-cachetools_5.3.3.orig.tar.gz 24.4 KiB d49add1f5aac63b1e47421d2d63049f2a353cb4889fd049dd1689e231ee31cfb
python-cachetools_5.3.3-1.debian.tar.xz 3.9 KiB 3793056fb9a6982c4926e6611358097316d57e4698c09c6d7d6843f1caad780f

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)