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

Changelog

lazy-object-proxy (1.4.3-1build1) focal; urgency=medium

  * No-change rebuild to drop python3.7.

 -- Matthias Klose <email address hidden>  Tue, 18 Feb 2020 10:43:53 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Sandro Tosi
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release main misc

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.4.3.orig.tar.xz 26.9 KiB 2bc13c8207248a12a317e45c3b857e28ba4efb4f0c602709be85f1dba9d47b37
lazy-object-proxy_1.4.3-1build1.debian.tar.xz 4.9 KiB 237d7c00b348852a03dc24da2f5219b15813fc90f1ffe98c909b9643a12b90b2
lazy-object-proxy_1.4.3-1build1.dsc 2.1 KiB bcadc1a144d849c1039a36156a312f1ab2ac97ae5d6faeabb0ee5f0364d8745d

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