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

Changelog

lazy-object-proxy (1.10.0-ok1) nile; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Tue, 07 May 2024 10:59:38 +0800

Upload details

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

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 release main python
Nile V2.0 proposed main python

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.10.0.orig.tar.gz 36.5 KiB bf9b2d8dbc0021dec2c61de7cd88a154a8ed3bc935503f07dcff9b1d83ddc42b
lazy-object-proxy_1.10.0-ok1.debian.tar.xz 2.4 KiB 84d72e54d83aeca0ad0a09852324f0123a55cdcc976cd6b7aeb4f42019de14d6
lazy-object-proxy_1.10.0-ok1.dsc 2.1 KiB 1ca8bb7228488d65529e48efc47eb7080e2648ba03f1ebf785f93734759f2578

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