lazy-object-proxy 1.5.2-1build1 source package in Ubuntu

Changelog

lazy-object-proxy (1.5.2-1build1) jammy; urgency=medium

  * No-change rebuild to add python3.10.

 -- Matthias Klose <email address hidden>  Sat, 16 Oct 2021 06:56:36 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Jammy
Original maintainer:
Sandro Tosi
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.5.2.orig.tar.xz 28.1 KiB 6c73e7de878b7131444ddb4150f63919dd039b6e937ba25d3b4506b7d0637b98
lazy-object-proxy_1.5.2-1build1.debian.tar.xz 5.7 KiB 0c1213e4718ae3c79aafb0c0c7aac90e5565a5685809b8c338db2fb96efdadb7
lazy-object-proxy_1.5.2-1build1.dsc 2.1 KiB b25471232f0cf14c3e235a89eddf0208607c65145d3e5059a25f3bb33110812c

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