[ZPT] CVS: Packages/TAL - DummyEngine.py:1.19
guido@digicool.com
guido@digicool.com
Wed, 28 Mar 2001 19:00:07 -0500 (EST)
Update of /cvs-repository/Packages/TAL
In directory korak:/tmp/cvs-serv14914
Modified Files:
DummyEngine.py
Log Message:
Add 'nothing' to the initial dictionary (its value is None).
--- Updated File DummyEngine.py in package Packages/TAL --
--- DummyEngine.py 2001/03/27 11:46:01 1.18
+++ DummyEngine.py 2001/03/29 00:00:06 1.19
@@ -98,7 +98,7 @@
if macros is None:
macros = {}
self.macros = macros
- dict = {}
+ dict = {'nothing': None}
self.locals = self.globals = dict
self.stack = [dict]