self.boardwalk_price += 50
return self.boardwalk_price
-Now when we run it the price stays at $550. Why? because it's cached!:
+Now when we run it the price stays at $550.
.. code-block:: python
>>> m.boardwalk
550
+Why doesn't the value of `m.boardwalk` change? Because it's a **cached property**!:
+
Credits
--------
* Django, Werkzueg, Bottle, and Zope for having their own implementations. This package uses the Django version.
-* Reinout Van Rees for pointing out the cached_property decorator to me.
+* Reinout Van Rees for pointing out the cached_property decorator to me.
\ No newline at end of file