python-memoized-property 1.0.3-2 source package in Ubuntu

Changelog

python-memoized-property (1.0.3-2) unstable; urgency=medium

  * Source-only upload for testing migration

 -- Nilesh Patra <email address hidden>  Thu, 19 Aug 2021 16:32:14 +0530

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 universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-memoized-property_1.0.3-2.dsc 2.2 KiB 31f29d4873452de1d24a6b8fc4a41e521aed18845431fe642700b9d34783f08f
python-memoized-property_1.0.3.orig.tar.gz 4.9 KiB 4be4d0209944b9b9b678dae9d7e312249fe2e6fb8bdc9bdaa1da4de324f0fcf5
python-memoized-property_1.0.3-2.debian.tar.xz 3.5 KiB b02a0582568e1adaa257926919d8f7c61fc3c1069bf19aa9fad9a1e466d4106a

No changes file available.

Binary packages built by this source

python3-memoized-property: decorator to avoid redundant computation

 This package allows one to tag methods that have may have their
 result buffered to save redundant computation, as in:
   @memoized_property
   def name(self):
       return some_expensive_load()