lazy-object-proxy 1.9.0-1ubuntu1 source package in Ubuntu

Changelog

lazy-object-proxy (1.9.0-1ubuntu1) noble; urgency=medium

  * d/p/py312-compat.patch: Fix generator.throw DeprecationWarning on Py3.12

 -- Lukas Märdian <email address hidden>  Tue, 28 Nov 2023 12:12:13 +0100

Upload details

Uploaded by:
Lukas Märdian
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
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.9.0.orig.tar.xz 31.6 KiB b30fd5138ba30f9690a3278c6124ed0345e6e44994134afa411bc484e4c6ccd4
lazy-object-proxy_1.9.0-1ubuntu1.debian.tar.xz 3.9 KiB 433abef1d98f914781699e07d901d429dedc6dce5e14b62b874cbf7ef0ad93f4
lazy-object-proxy_1.9.0-1ubuntu1.dsc 2.3 KiB 519bbf98cf96a5e0b74e975e62cd7b3bf01de63cf3e868e580a2c8d64980da25

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