lazy-object-proxy 1.10.0-3 source package in Ubuntu

Changelog

lazy-object-proxy (1.10.0-3) unstable; urgency=medium

  * Adopt orphaned package. Closes: #1065238.
  * Standards-Version: 4.7.0 (routine-update)

 -- Emmanuel Arias <email address hidden>  Sun, 07 Apr 2024 15:29:23 -0300

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.10.0-3.dsc 2.3 KiB da26aaaad6e222b9fe0c7d6da78962303ee613fb9e2ea58381bf96808d78201b
lazy-object-proxy_1.10.0.orig.tar.gz 36.5 KiB bf9b2d8dbc0021dec2c61de7cd88a154a8ed3bc935503f07dcff9b1d83ddc42b
lazy-object-proxy_1.10.0-3.debian.tar.xz 3.4 KiB d6087b323f8534911a65a9d2ae81e21924525cd6a41ea90f18cd52eabdac4512

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