Get a object from the cache by ID. @param id: The object ID. @type id: str @return: The object, else None @rtype: any
(self, id)
| 41 | """ |
| 42 | |
| 43 | def get(self, id): |
| 44 | """ |
| 45 | Get a object from the cache by ID. |
| 46 | @param id: The object ID. |
| 47 | @type id: str |
| 48 | @return: The object, else None |
| 49 | @rtype: any |
| 50 | """ |
| 51 | raise Exception('not-implemented') |
| 52 | |
| 53 | def getf(self, id): |
| 54 | """ |
no outgoing calls
no test coverage detected