[Zope-Checkins] CVS: Packages/ZConfig - SchemaParser.py:1.1.4.7

Fred L. Drake, Jr. fred@zope.com
Tue, 10 Dec 2002 11:30:48 -0500


Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv3659

Modified Files:
      Tag: zconfig-schema-devel-branch
	SchemaParser.py 
Log Message:
Raise an informative error when a schema requires (currently)
unsupported functionality.


=== Packages/ZConfig/SchemaParser.py 1.1.4.6 => 1.1.4.7 ===
--- Packages/ZConfig/SchemaParser.py:1.1.4.6	Tue Dec 10 11:26:44 2002
+++ Packages/ZConfig/SchemaParser.py	Tue Dec 10 11:30:47 2002
@@ -151,6 +151,7 @@
         name = attrs.get("name")
         if not name:
             self.doSchemaError("section group must be named")
+        raise NotImpementedError("sectiongroup support not yet implemented")
 
     def end_sectiongroup(self):
         del self._prefixes[-1]