Implement interface.
(self)
| 847 | return len(self.keys()) |
| 848 | |
| 849 | def itemcounts(self): |
| 850 | """Implement interface.""" |
| 851 | return self._client.select_count(self.keys()) |
| 852 | |
| 853 | def has_key(self, key): |
| 854 | """Implement interface.""" |
nothing calls this directly
no test coverage detected