- Add decorator to explicitly ignore methods (
1687e06
)
- Handle undefined getters in error messages (
f2bb9e5
)
- Upgrade to signature_dispatch~=1.0 (
453447a
)
- Use built-in functools.cached_property in py3.8+ (
be358a9
)
- Add overwrite/automatic/manual cache policies (
a013b69
)
- remove property/object/class cache policies. (
a013b69
)
- Describe how to manually clear the cache (
7a526e7
)
- Change default cache policy to 'property' (
a3baec5
)
- the new default caches more aggressively, so code written with the old default may end up with stale values. Update old code by replacing
@autoprop.cache
with@autoprop.cache(policy='object')
. (a3baec5
)
- Add the
immutable
decorator (e8f023a
)
- Cache getters (not just properties) (
ab454eb
)
- Reorganize the caching section (
f7ac9bb
) - Fix typo (
613e180
) - Tweak wording (
b009007
) - Fix formatting (
11b027f
) - Improve the first example (
8e365a1
)
- Only configure caching if requested (
109f430
)
- Don't have every static/class method invalidate the cache (
a231052
)
- Document the caching system (
1974c42
)
- Drop support for python2. (
a05726a
)
- Remove python2 badge (
815c60d
)