[Zope3-checkins] CVS: Zope3/src/zope/tal - talinterpreter.py:1.23

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Aug 6 11:30:11 EDT 2003


Update of /cvs-repository/Zope3/src/zope/tal
In directory cvs.zope.org:/tmp/cvs-serv15416/tal

Modified Files:
	talinterpreter.py 
Log Message:
This is a fix (without test for now) that was made in the 
srichter-something-with-tal-branch. Once Fred confirms that this fix is 
correct, I will merge in the tests as well. 

For now this makes everything work.


=== Zope3/src/zope/tal/talinterpreter.py 1.22 => 1.23 ===
--- Zope3/src/zope/tal/talinterpreter.py:1.22	Tue Jul 15 02:06:56 2003
+++ Zope3/src/zope/tal/talinterpreter.py	Wed Aug  6 10:30:06 2003
@@ -14,7 +14,6 @@
 """
 Interpreter for a pre-compiled TAL program.
 """
-
 import sys
 
 # Do not use cStringIO here!  It's not unicode aware. :(
@@ -156,7 +155,7 @@
 
     def popMacro(self):
         stuff = self.macroStack.pop()
-        self.i18nContext = stuff[3]
+        #self.i18nContext = stuff[3]
         return stuff
 
     def macroContext(self, what):




More information about the Zope3-Checkins mailing list