diff options
Diffstat (limited to 'mako/cache.py')
-rw-r--r-- | mako/cache.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mako/cache.py b/mako/cache.py index c405c51..c7aabd2 100644 --- a/mako/cache.py +++ b/mako/cache.py @@ -13,6 +13,7 @@ register_plugin("beaker", "mako.ext.beaker_cache", "BeakerCacheImpl") class Cache(object): + """Represents a data content cache made available to the module space of a specific :class:`.Template` object. @@ -181,6 +182,7 @@ class Cache(object): class CacheImpl(object): + """Provide a cache implementation for use by :class:`.Cache`.""" def __init__(self, cache): |