[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/blob.py Removed
	unnecessary sort.
    Christian Theune 
    ct at gocept.com
       
    Sun Nov 11 06:43:18 EST 2007
    
    
  
Log message for revision 81751:
  Removed unnecessary sort.
  
Changed:
  U   ZODB/trunk/src/ZODB/blob.py
-=-
Modified: ZODB/trunk/src/ZODB/blob.py
===================================================================
--- ZODB/trunk/src/ZODB/blob.py	2007-11-11 11:20:37 UTC (rev 81750)
+++ ZODB/trunk/src/ZODB/blob.py	2007-11-11 11:43:17 UTC (rev 81751)
@@ -490,8 +490,6 @@
         base_dir = self.fshelper.base_dir
         for oid, oid_path in self.fshelper.listOIDs():
             files = os.listdir(oid_path)
-            files.sort()
-
             for filename in files:
                 filepath = os.path.join(oid_path, filename)
                 whatever, serial = self.fshelper.splitBlobFilename(filepath)
    
    
More information about the Zodb-checkins
mailing list