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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
.. propcache documentation master file, created by
sphinx-quickstart on Mon Aug 29 19:55:36 2016.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
propcache
=========
The module provides accelerated versions of ``cached_property``
Introduction
------------
Usage
-----
The API is designed to be nearly identical to the built-in ``cached_property`` class,
except for the additional ``under_cached_property`` class which uses ``self._cache``
instead of ``self.__dict__`` to store the cached values and prevents ``__set__`` from being called.
API documentation
-----------------
Open :ref:`propcache-api` for reading full list of available methods.
Source code
-----------
The project is hosted on GitHub_
Please file an issue on the `bug tracker
<https://github.com/aio-libs/propcache/issues>`_ if you have found a bug
or have some suggestion in order to improve the library.
Discussion list
---------------
*aio-libs* google group: https://groups.google.com/forum/#!forum/aio-libs
Feel free to post your questions and ideas here.
Authors and License
-------------------
The ``propcache`` package is derived from ``yarl`` which is written by Andrew Svetlov.
It's *Apache 2* licensed and freely available.
Contents:
.. toctree::
:maxdepth: 2
api
.. toctree::
:caption: What's new
changes
.. toctree::
:caption: Contributing
contributing/guidelines
.. toctree::
:caption: Maintenance
contributing/release_guide
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
.. _GitHub: https://github.com/aio-libs/propcache
|