lazy-object-proxy 1.8.0-2 source package in Ubuntu

Changelog

lazy-object-proxy (1.8.0-2) unstable; urgency=medium

  * run autopkgtest via autopkgtest-pkg-pybuild

 -- Sandro Tosi <email address hidden>  Sat, 31 Dec 2022 15:24:47 -0500

Upload details

Uploaded by:
Sandro Tosi
Uploaded to:
Sid
Original maintainer:
Sandro Tosi
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.8.0-2.dsc 2.2 KiB a63e7b78cc2c4b8f2364328523479b6798e7d8f4a2a4dfa1f7fb33368cfa191a
lazy-object-proxy_1.8.0.orig.tar.xz 31.1 KiB 9f44a1d11830fa7eadc9974bdd14973e03541e6eebcef9c81fc3761e791fe38d
lazy-object-proxy_1.8.0-2.debian.tar.xz 3.2 KiB 4fe7a32699983e3dc79974cd1565d170bd4fe0f63dfd7b83d2c618d351871abd

Available diffs

No changes file available.

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