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

Changelog

lazy-object-proxy (1.2.1-1) unstable; urgency=low

  * Initial release (Closes: #806678)

 -- Sandro Tosi <email address hidden>  Sun, 29 Nov 2015 23:49:34 +0000

Upload details

Uploaded by:
Sandro Tosi
Uploaded to:
Sid
Original maintainer:
Sandro Tosi
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
lazy-object-proxy_1.2.1-1.dsc 2.2 KiB f6f053bfe37f97113e6fd9fc76055d0aab0eb91138d2b072eda515a007adc495
lazy-object-proxy_1.2.1.orig.tar.gz 28.2 KiB 22ed751a2c63c6cf718674fd7461b1dfc45215bab4751ca32b6c9b8cb2734cb3
lazy-object-proxy_1.2.1-1.debian.tar.xz 4.6 KiB ea53f1dcdf2093362ba5d5a9b6e5557fc658abdb9fa3ca47ed10f33b1d9afc18

No changes file available.

Binary packages built by this source

python-lazy-object-proxy: Python 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 2 version of lazy-object-proxy .

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 .