comparison sat/memory/persistent.py @ 3661:cbb988a6f507

merge bookmark `@`
author Goffi <goffi@goffi.org>
date Wed, 08 Sep 2021 11:20:37 +0200
parents 888109774673 d2b17f0f2615
children 524856bd7b19
comparison
equal deleted inserted replaced
3639:05db744f194f 3661:cbb988a6f507
202 return defer.ensureDeferred(self.storage.getPrivates( 202 return defer.ensureDeferred(self.storage.getPrivates(
203 self.namespace, binary=self.binary, profile=self.profile 203 self.namespace, binary=self.binary, profile=self.profile
204 )) 204 ))
205 205
206 def __repr__(self): 206 def __repr__(self):
207 raise NotImplementedError 207 return self.__str__()
208 208
209 def __str__(self): 209 def __str__(self):
210 return "LazyPersistentBinaryDict (namespace: {})".format(self.namespace) 210 return "LazyPersistentBinaryDict (namespace: {})".format(self.namespace)
211 211
212 def __lt__(self, other): 212 def __lt__(self, other):