Retrieve a cached value from the container
(self, key, **kw)
| 210 | set_value = put |
| 211 | |
| 212 | def get(self, key, **kw): |
| 213 | """Retrieve a cached value from the container""" |
| 214 | return self._get_value(key, **kw).get_value() |
| 215 | get_value = get |
| 216 | |
| 217 | def remove_value(self, key, **kw): |
no test coverage detected