lazy-object-proxy 1.12.0-ok1 source package in openKylin

Changelog

lazy-object-proxy (1.12.0-ok1) huanghe; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Fri, 29 May 2026 06:35:06 -0700

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
any
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main python

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.12.0.orig.tar.gz 38.3 KiB 21b39ab1b141ce22961fe8f0c3f177dc2172747645ee7abba2522bae8afa6ab6
lazy-object-proxy_1.12.0-ok1.debian.tar.xz 2.4 KiB 5af982b45805755689f6c597d4fef52f3f59a6fd21142e46b311af228de1707f
lazy-object-proxy_1.12.0-ok1.dsc 2.1 KiB 187b6fca27112274e2084db1b21a016ff1d321ed6a30610fc3687a635db486f5

Available diffs

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