[Zope-Checkins] SVN: Zope/branches/2.12/src/Products/PluginIndexes/PathIndex/PathIndex.py Restore bbb: rename _insertEntry back to insertEntry. LP #562997

Wichert Akkerman wichert at wiggy.net
Wed Apr 14 08:49:24 EDT 2010


Log message for revision 110877:
  Restore bbb: rename _insertEntry back to insertEntry. LP #562997

Changed:
  U   Zope/branches/2.12/src/Products/PluginIndexes/PathIndex/PathIndex.py

-=-
Modified: Zope/branches/2.12/src/Products/PluginIndexes/PathIndex/PathIndex.py
===================================================================
--- Zope/branches/2.12/src/Products/PluginIndexes/PathIndex/PathIndex.py	2010-04-14 12:48:01 UTC (rev 110876)
+++ Zope/branches/2.12/src/Products/PluginIndexes/PathIndex/PathIndex.py	2010-04-14 12:49:24 UTC (rev 110877)
@@ -118,7 +118,7 @@
             self._length.change(1)
 
         for i in range(len(comps)):
-            self._insertEntry(comps[i], docid, i)
+            self.insertEntry(comps[i], docid, i)
         self._unindex[docid] = path
         return 1
 
@@ -228,7 +228,7 @@
 
     # Helper methods
 
-    def _insertEntry(self, comp, id, level):
+    def insertEntry(self, comp, id, level):
         """ Insert an entry.
 
         'comp' is an individual path component



More information about the Zope-Checkins mailing list