[Zope3-checkins] CVS: Zope/lib/python/ZConfig - info.py:1.15

Richard Jones richard@commonground.com.au
Mon, 2 Jun 2003 01:33:47 -0400


Update of /cvs-repository/Zope/lib/python/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv6149

Modified Files:
	info.py 
Log Message:
Default the "description" on SectionType to None. Makes schema introspection
a little easier.

SectionType and AbstractType should probably inherit from a common base...


=== Zope/lib/python/ZConfig/info.py 1.14 => 1.15 ===
--- Zope/lib/python/ZConfig/info.py:1.14	Mon Mar 24 12:09:48 2003
+++ Zope/lib/python/ZConfig/info.py	Mon Jun  2 01:33:45 2003
@@ -247,6 +247,7 @@
         self.keytype = keytype
         self.valuetype = valuetype
         self.handler = None
+        self.description = None
         self.registry = registry
         self._children = []    # [(key, info), ...]
         self._attrmap = {}     # {attribute: info, ...}