[Checkins] SVN: z3c.table/branches/lazyvalues2/src/z3c/table/table.py easier to read

Godefroid Chapelle gotcha at bubblenet.be
Fri Aug 20 04:34:32 EDT 2010


Log message for revision 115824:
  easier to read

Changed:
  U   z3c.table/branches/lazyvalues2/src/z3c/table/table.py

-=-
Modified: z3c.table/branches/lazyvalues2/src/z3c/table/table.py
===================================================================
--- z3c.table/branches/lazyvalues2/src/z3c/table/table.py	2010-08-20 08:33:09 UTC (rev 115823)
+++ z3c.table/branches/lazyvalues2/src/z3c/table/table.py	2010-08-20 08:34:31 UTC (rev 115824)
@@ -228,7 +228,7 @@
             self.rows = createObject("z3c.batching.batch", self.rows,
                 start=self.batchStart, size=self.batchSize)
 
-    def updateBatch(self):
+    def updateBatchProvider(self):
         if IBatch.providedBy(self.rows):
             self.batchProvider = zope.component.getMultiAdapter((self.context,
                 self.request, self), interfaces.IBatchProvider,
@@ -336,7 +336,7 @@
         if self._mustBatch():
             self.batchRows()
 
-        self.updateBatch()
+        self.updateBatchProvider()
 
     def render(self):
 



More information about the checkins mailing list