tests/simplestorerepo.py
changeset 50504 862e3a13da44
parent 48946 642e31cb55f0
equal deleted inserted replaced
50503:aede57466804 50504:862e3a13da44
   662     # Otherwise assume it belongs to the simple store.
   662     # Otherwise assume it belongs to the simple store.
   663     return True
   663     return True
   664 
   664 
   665 
   665 
   666 class simplestore(store.encodedstore):
   666 class simplestore(store.encodedstore):
   667     def datafiles(self, undecodable=None):
   667     def data_entries(self, undecodable=None):
   668         for x in super(simplestore, self).datafiles():
   668         for x in super(simplestore, self).data_entries():
   669             yield x
   669             yield x
   670 
   670 
   671         # Supplement with non-revlog files.
   671         # Supplement with non-revlog files.
   672         extrafiles = self._walk('data', True, filefilter=issimplestorefile)
   672         extrafiles = self._walk('data', True, filefilter=issimplestorefile)
   673 
   673