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

Changelog

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

  [ Ondřej Nový ]
  * Bump Standards-Version to 4.4.1.

  [ Sandro Tosi ]
  * New upsteam release
  * debian/copyright
    - update upstream copyright info
  * debian/control
    - add python3-setuptools-scm to b-d

 -- Sandro Tosi <email address hidden>  Mon, 18 Nov 2019 21:19:58 -0500

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.4.3-1.dsc 2.1 KiB 2bfe9aa41129b71228d25548e93556b023a508d37f8fc631c47a878ca8197eb7
lazy-object-proxy_1.4.3.orig.tar.xz 26.9 KiB 2bc13c8207248a12a317e45c3b857e28ba4efb4f0c602709be85f1dba9d47b37
lazy-object-proxy_1.4.3-1.debian.tar.xz 4.9 KiB 50c2964064563934b13fa956b4b03fc92fec02129d354061479e632c8ad40ed1

Available diffs

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