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

Changelog

lazy-object-proxy (1.9.0-ok1) yangtze; urgency=medium

  * Update upstream version.

 -- sufang <email address hidden>  Mon, 20 Mar 2023 14:06:27 +0800

Upload details

Uploaded by:
sufang
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
any
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Yangtze V1.0 release main python
Yangtze V1.0 proposed main python

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.9.0.orig.tar.gz 35.9 KiB 9c28d15b6cb74049e71f952b8c35ee9e846ccbc1eedebb9d112b10392e12f979
lazy-object-proxy_1.9.0-ok1.debian.tar.xz 2.7 KiB c8a414b9bf2114fe34dd7fba8b81e79aad22cbc3dda675facb89d23b43dfa613
lazy-object-proxy_1.9.0-ok1.dsc 2.0 KiB 89311dbfb044fccb7a7486113992600c78982299406d66c7653e8d13fa0131c4

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