lazy-object-proxy 1.3.1-1build3 source package in Ubuntu

Changelog

lazy-object-proxy (1.3.1-1build3) focal; urgency=medium

  * No-change rebuild to build with python3.8.

 -- Matthias Klose <email address hidden>  Fri, 18 Oct 2019 18:07:39 +0000

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

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.3.1.orig.tar.gz 31.5 KiB eb91be369f945f10d3a49f5f9be8b3d0b93a4c2be8f8a5b83b0571b8123e0a7a
lazy-object-proxy_1.3.1-1build3.debian.tar.xz 5.1 KiB 509be57ade0ab7acd4001c6cce523b17585d70985ffe6d06354c052a99beeb21
lazy-object-proxy_1.3.1-1build3.dsc 2.3 KiB c848648efd326502dbb3204cd7a4183b3af936245a8be295d5204bb06c683cab

Available diffs

View changes file

Binary packages built by this source

python-lazy-object-proxy: No summary available for python-lazy-object-proxy in ubuntu focal.

No description available for python-lazy-object-proxy in ubuntu focal.

python-lazy-object-proxy-dbgsym: No summary available for python-lazy-object-proxy-dbgsym in ubuntu focal.

No description available for python-lazy-object-proxy-dbgsym in ubuntu focal.

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