[ZPT] CVS: Packages/TAL - driver.py:1.24

fred@digicool.com fred@digicool.com
Tue, 12 Jun 2001 10:59:23 -0400 (EDT)


Update of /cvs-repository/Packages/TAL
In directory korak.digicool.com:/tmp/cvs-serv1002

Modified Files:
	driver.py 
Log Message:

Delay expectation of being able to access the DummyEngine class, allowing
circular import by the DummyEngine module.



--- Updated File driver.py in package Packages/TAL --
--- driver.py	2001/04/27 17:25:04	1.23
+++ driver.py	2001/06/12 14:59:23	1.24
@@ -101,7 +101,7 @@
 
 # Import local classes
 import TALDefs
-from DummyEngine import DummyEngine
+import DummyEngine
 
 FILE = "tests/input/test01.xml"
 
@@ -160,7 +160,7 @@
     program, macros = it
     assert TALDefs.isCurrentVersion(program)
     if engine is None:
-        engine = DummyEngine(macros)
+        engine = DummyEngine.DummyEngine(macros)
     TALInterpreter(program, macros, engine, stream, wrap=0,
                    tal=tal, showtal=showtal, strictinsert=strictinsert)()