lazy-object-proxy 1.7.1-1build1 source package in Ubuntu

Changelog

lazy-object-proxy (1.7.1-1build1) jammy; urgency=medium

  * No-change rebuild with Python 3.10 only

 -- Graham Inggs <email address hidden>  Thu, 17 Mar 2022 19:25:48 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Jammy
Original maintainer:
Sandro Tosi
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.7.1.orig.tar.xz 31.4 KiB 285f806966a9d29cc06e57f4033d996ebbd42ada54beee7acaa7f6ce01c54569
lazy-object-proxy_1.7.1-1build1.debian.tar.xz 4.1 KiB 0e0085b8f61206c076a920fbe64c810e60f2133bab359eb0214d43eaa4b14c2a
lazy-object-proxy_1.7.1-1build1.dsc 2.3 KiB 5f5a5ae350889131be5a204074d6f0a16d9e1b03777bac1b24b601a951e17e4d

View changes file

Binary packages built by this source

python3-lazy-object-proxy: Python 3 fast and thorough lazy object proxy

 A lazy object proxy is an object that wraps a callable but defers the call
 until the object is actually required, and caches the result of said call.
 .
 These kinds of objects are useful in resolving various dependency issues, few
 examples:
 .
  * Objects that need to held circular references at each other, but at
    different stages. To instantiate object Foo you need an instance of Bar.
    Instance of Bar needs an instance of Foo in some of it methods (but not at
    construction). Circular imports sound familiar?
 .
  * Performance sensitive code. You don't know ahead of time what you're going
    to use but you don't want to pay for allocating all the resources at the
    start as you usually need just few of them.
 .
 This package contains the Python 3 version of lazy-object-proxy .

python3-lazy-object-proxy-dbgsym: debug symbols for python3-lazy-object-proxy