Allow for a way to execute the decorated callable bypassing caching completly

This commit is contained in:
Marcin Lulek 2016-02-07 22:19:46 +00:00
parent c6913eb143
commit 9fe7f57d42
1 changed files with 1 additions and 0 deletions

View File

@ -1074,6 +1074,7 @@ class CacheRegion(object):
decorate.invalidate = invalidate
decorate.refresh = refresh
decorate.get = get
decorate.original = fn
return decorate
return decorator