lazy-object-proxy 1.6.0-1 source package in Ubuntu

Changelog

lazy-object-proxy (1.6.0-1) unstable; urgency=medium

  * New upstream release
  * debian/watch
    - track GitHub releases
  * debian/patches/dont-use-setuptools-scm.patch
    - refresh patch

 -- Sandro Tosi <email address hidden>  Wed, 06 Oct 2021 23:55:15 -0400

Upload details

Uploaded by:
Sandro Tosi
Uploaded to:
Sid
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.6.0-1.dsc 2.1 KiB 5ef6d5b1c2c10a7a603622ff9c2035f168ef836dae6e3b193cf715bf9eec4964
lazy-object-proxy_1.6.0.orig.tar.xz 33.0 KiB 88758e4e8bd11e6a3b6f259015ffa6dde00859edb7816035a06ad6371475dcb3
lazy-object-proxy_1.6.0-1.debian.tar.xz 5.6 KiB 8b3f066d707bc267ceb6aaaadafc2ce955f6d6b6880f822d1cb23f624807b6e3

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