[ZPT] CVS: Zope/lib/python/TAL - DummyEngine.py:1.30.18.1
Matt Behrens
matt@zigg.com
Wed, 29 May 2002 15:45:54 -0400
Update of /cvs-repository/Zope/lib/python/TAL
In directory cvs.zope.org:/tmp/cvs-serv18366/lib/python/TAL
Modified Files:
Tag: zigg_unix-install-control-config-branch
DummyEngine.py
Log Message:
Merge in HEAD (except setup.py... gotta chat about that one) :-)
=== Zope/lib/python/TAL/DummyEngine.py 1.30 => 1.30.18.1 ===
from TALDefs import NAME_RE, TALESError, ErrorInfo
-Default = []
+class Default:
+ pass
+Default = Default()
name_match = re.compile(r"(?s)(%s):(.*)\Z" % NAME_RE).match