python-cachetools 1.1.6-1 source package in Ubuntu

Changelog

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

  * New upstream release. Notable changes:
    - Reimplement LRUCache and TTLCache using collections.OrderedDict. Note
      that this will break pickle compatibility with previous versions.
  * d/control:
    - Bump Standards-Version to 3.9.8 (no changes needed)

 -- Christian Kastner <email address hidden>  Fri, 15 Apr 2016 10:44:50 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Yakkety: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_1.1.6-1.dsc 2.2 KiB 6d682e3f615e7119260788d9d68f65cbfc1724bc23012aca0572c289b3f97451
python-cachetools_1.1.6.orig.tar.gz 19.7 KiB bf9bab07c548e6e422be18b43d145a38ba744bc5c60ce38712e55e2e9da70283
python-cachetools_1.1.6-1.debian.tar.xz 2.9 KiB c167c301843281138b377c5ff2da74a44abcf29237c81fd0ba8411e6a521a329

Available diffs

No changes file available.

Binary packages built by this source

python-cachetools: extensible memoizing collections and decorators for Python

 This Python module provides various memoizing collections and decorators,
 including a variant of the Python 3 Standard Library functools.lru_cache()
 function decorator.
 .
 The supported cache algorithms are:
 .
  * Least recently used (LRU)
  * Least frequently used (LFU)
  * Random replacement (RR)
  * Per-item time-to-live (TTL)

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

 This Python 3 module provides various memoizing collections and decorators,
 including a variant of the Python 3 Standard Library functools.lru_cache()
 function decorator.
 .
 The supported cache algorithms are:
 .
  * Least recently used (LRU)
  * Least frequently used (LFU)
  * Random replacement (RR)
  * Per-item time-to-live (TTL)