[Zope-Checkins] SVN: Zope/trunk/lib/python/TAL/TALInterpreter.py avoid minor difference between the Zope 2 and Zope 3 versions

Fred L. Drake, Jr. fdrake at gmail.com
Tue Aug 9 18:48:17 EDT 2005


Log message for revision 37827:
  avoid minor difference between the Zope 2 and Zope 3 versions

Changed:
  U   Zope/trunk/lib/python/TAL/TALInterpreter.py

-=-
Modified: Zope/trunk/lib/python/TAL/TALInterpreter.py
===================================================================
--- Zope/trunk/lib/python/TAL/TALInterpreter.py	2005-08-09 22:22:37 UTC (rev 37826)
+++ Zope/trunk/lib/python/TAL/TALInterpreter.py	2005-08-09 22:48:17 UTC (rev 37827)
@@ -455,8 +455,7 @@
     def do_rawtextBeginScope(self, (s, col, position, closeprev, dict)):
         self._stream_write(s)
         self.col = col
-        self.position = position
-        self.engine.setPosition(position)
+        self.do_setPosition(position)
         if closeprev:
             engine = self.engine
             engine.endScope()



More information about the Zope-Checkins mailing list