Source: python-memoized-property Section: python Maintainer: Debian Python Team Uploaders: Steffen Moeller Build-Depends: debhelper-compat (= 14), dh-python, python3-setuptools, python3-all Standards-Version: 4.7.4 Homepage: https://github.com/estebistec/python-memoized-property Vcs-Browser: https://salsa.debian.org/python-team/packages/python-memoized-property Vcs-Git: https://salsa.debian.org/python-team/packages/python-memoized-property.git #Testsuite: autopkgtest-pkg-python Package: python3-memoized-property Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Description: decorator to avoid redundant computation This package allows one to tag methods that have may have their result buffered to save redundant computation, as in: @memoized_property def name(self): return some_expensive_load()