##// END OF EJS Templates
store: document the decoding discrepancy in store.py...
marmoute -
r48589:59bc92a7 stable
parent child Browse files
Show More
@@ -569,6 +569,11 b' class encodedstore(basicstore):'
569 self.vfs = vfsmod.filtervfs(vfs, encodefilename)
569 self.vfs = vfsmod.filtervfs(vfs, encodefilename)
570 self.opener = self.vfs
570 self.opener = self.vfs
571
571
572 # note: topfiles would also need a decode phase. It is just that in
573 # practice we do not have any file outside of `data/` that needs encoding.
574 # However that might change so we should probably add a test and encoding
575 # decoding for it too. see issue6548
576
572 def datafiles(self, matcher=None):
577 def datafiles(self, matcher=None):
573 for t, a, b, size in super(encodedstore, self).datafiles():
578 for t, a, b, size in super(encodedstore, self).datafiles():
574 try:
579 try:
General Comments 0
You need to be logged in to leave comments. Login now