[Zope-Checkins] CVS: Packages/ZConfig - Config.py:1.5
Fred L. Drake, Jr.
fred@zope.com
Thu, 7 Nov 2002 11:22:15 -0500
Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv5398
Modified Files:
Config.py
Log Message:
Allow application-provided section types to receive a call when they can be
considered "complete".
(Part of this was accidentally commited in the previous revision.)
=== Packages/ZConfig/Config.py 1.4 => 1.5 ===
--- Packages/ZConfig/Config.py:1.4 Thu Nov 7 10:29:14 2002
+++ Packages/ZConfig/Config.py Thu Nov 7 11:22:14 2002
@@ -26,7 +26,7 @@
return "<%s at 0x%x>" % (classname, id(self))
def finish(self):
- return self
+ pass
def setDelegate(self, section):
if self.delegate is not None: