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

Changelog

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

  * orphan

 -- Sandro Tosi <email address hidden>  Sat, 02 Mar 2024 01:49:33 -0500

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

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.10.0-2.dsc 2.2 KiB 89e70b6775c6676fd58bc865d4866aa3cfabe1ae299b02f38561d619c3db1318
lazy-object-proxy_1.10.0.orig.tar.gz 36.5 KiB bf9b2d8dbc0021dec2c61de7cd88a154a8ed3bc935503f07dcff9b1d83ddc42b
lazy-object-proxy_1.10.0-2.debian.tar.xz 3.4 KiB 4c6799c9ae4d11984a5a4e51e7999f006f2d6333da8de7107ce58c0da9c2b4a9

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