lazy 1.5.1-1.1 source package in Ubuntu

Changelog

lazy (1.5.1-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Source-only upload.

 -- Adrian Bunk <email address hidden>  Wed, 08 Feb 2023 14:19:28 +0200

Upload details

Uploaded by:
Wouter Verhelst
Uploaded to:
Sid
Original maintainer:
Wouter Verhelst
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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
lazy_1.5.1-1.1.dsc 1.9 KiB 209cd3ee3980bd4b92d5d6141a3c64dc2056a38527af5d272607937ed49b00d1
lazy_1.5.1.orig.tar.gz 12.5 KiB 63170b33932e08c5f4b401484e110469b396ac64a12b5dbb86228cc2e60d007c
lazy_1.5.1-1.1.debian.tar.xz 2.3 KiB 57443c84f7b3fa2a20b121f574747de832d21eed4633aac5b83f85f4be2690cc

Available diffs

No changes file available.

Binary packages built by this source

python3-lazy: Lazy attributes for Python objects (Python 3)

 Lazy attributes are computed attributes that are evaluated only once,
 the first time they are used. Subsequent uses return the results of the
 first call. They come handy when code should run
 .
  - late, i.e. just before it is needed, and
  - once, i.e. not twice, in the lifetime of an object.
 .
 You can think of it as deferred initialization.
 .
 This package installs the library for Python 3.