django-memoize 2.1.0+dfsg-1 source package in Ubuntu

Changelog

django-memoize (2.1.0+dfsg-1) unstable; urgency=medium

  * Use my Debian ID in Uploaders
  * Add VCS fields to debian/control
  * New upstream release (2.1.0) 
  * Remove Testsuite from Control

 -- Christopher Hoskin <email address hidden>  Wed, 22 Feb 2017 20:13:12 +0000

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
Bionic release universe misc

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
django-memoize_2.1.0+dfsg-1.dsc 2.4 KiB aef5706e43c56b87f50366e5e33583f20f636db08a3725e34d2e4ddb15d2ebb1
django-memoize_2.1.0+dfsg.orig.tar.gz 19.5 KiB 234cb6080bc7665d85354e73a6e0c8a78a0f5525e1df0580eaa58ec9c8603454
django-memoize_2.1.0+dfsg-1.debian.tar.xz 4.0 KiB dccf8ed910564f709103113357d997fca298f4a69b59d6de12e6be3991b783ba

Available diffs

No changes file available.

Binary packages built by this source

python-django-memoize: No summary available for python-django-memoize in ubuntu eoan.

No description available for python-django-memoize in ubuntu eoan.

python-django-memoize-doc: No summary available for python-django-memoize-doc in ubuntu artful.

No description available for python-django-memoize-doc in ubuntu artful.

python3-django-memoize: implementation of memoization technique for Django (Python 3)

 django-memoize is an implementation of the memoization technique for Django.
 You can think of it as a cache for function or method results.
 .
 In memoization, the functions arguments are also included into the cache_key.
 Memoize is also designed for methods, since it will take into account the repr
 of the ‘self’ or ‘cls’ argument as part of the cache key. The theory behind
 memoization is that if you have a function you need to call several times in
 one request, it would only be calculated the first time that function is
 called with those arguments.
 .
 This is the Python 3 version of the package.