1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Source: lazy
Section: python
Priority: optional
Maintainer: Wouter Verhelst <wouter@debian.org>
Build-Depends: debhelper-compat (= 13), dh-python, python3-setuptools, python3-all
Standards-Version: 4.5.1
Homepage: https://github.com/stefanholek/lazy
Vcs-Browser: https://salsa.debian.org/mycroftai-team/lazy
Vcs-Git: https://salsa.debian.org/mycroftai-team/lazy.git
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no
Package: python3-lazy
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: Lazy attributes for Python objects (Python 3)
Lazy attributes are computed attributes that are evaluated only once,
the first time they are used. Subsequent uses return the results of the
first call. They come handy when code should run
.
- late, i.e. just before it is needed, and
- once, i.e. not twice, in the lifetime of an object.
.
You can think of it as deferred initialization.
.
This package installs the library for Python 3.
|