diff hgext/largefiles/basestore.py @ 18573:003730ca254d

largefiles: fold oddly named _verify into remotestore.exists
author Mads Kiilerich <mads@kiilerich.com>
date Fri, 08 Feb 2013 13:00:08 +0100
parents fb0e8966a4be
children 4db9e31ae605
line wrap: on
line diff
--- a/hgext/largefiles/basestore.py	Fri Feb 08 07:09:48 2013 -0600
+++ b/hgext/largefiles/basestore.py	Fri Feb 08 13:00:08 2013 +0100
@@ -43,7 +43,8 @@
         raise NotImplementedError('abstract method')
 
     def exists(self, hashes):
-        '''Check to see if the store contains the given hashes.'''
+        '''Check to see if the store contains the given hashes. Given an
+        iterable of hashes it returns a mapping from hash to bool.'''
         raise NotImplementedError('abstract method')
 
     def get(self, files):