[ZPT] CVS: Packages/TAL - DummyEngine.py:1.24
guido@digicool.com
guido@digicool.com
Wed, 16 May 2001 13:12:48 -0400 (EDT)
Update of /cvs-repository/Packages/TAL
In directory korak.digicool.com:/tmp/cvs-serv4529
Modified Files:
DummyEngine.py
Log Message:
Fix a bug in Evan's change two revisions back (1.22): the assignment
in setLocal() was improperly indented.
Evan: please, Please, PLEASE, run the test suite before checking in
changes!
--- Updated File DummyEngine.py in package Packages/TAL --
--- DummyEngine.py 2001/05/15 16:09:02 1.23
+++ DummyEngine.py 2001/05/16 17:12:48 1.24
@@ -122,7 +122,7 @@
if self.locals is self.stack[-1]:
# Unmerge this scope's locals from previous scope of first set
self.locals = self.locals.copy()
- self.locals[name] = value
+ self.locals[name] = value
def setGlobal(self, name, value):
self.globals[name] = value