[Zope3-checkins] CVS: Zope3/lib/python/Zope/Configuration - ISubdirectiveHandler.py:1.3
R. David Murray
bitz@bitdance.com
Wed, 18 Sep 2002 13:52:16 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Configuration
In directory cvs.zope.org:/tmp/cvs-serv7826
Modified Files:
ISubdirectiveHandler.py
Log Message:
Document when __call__ is supposed to be called (at least, judging by
the code in meta.py).
=== Zope3/lib/python/Zope/Configuration/ISubdirectiveHandler.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/Configuration/ISubdirectiveHandler.py:1.2 Tue Sep 3 12:07:08 2002
+++ Zope3/lib/python/Zope/Configuration/ISubdirectiveHandler.py Wed Sep 18 13:52:16 2002
@@ -32,4 +32,9 @@
def __call__():
"""Return a sequence of configuration actions.
- See IEmptyDirective for a definition of configuration actions."""
+ See IEmptyDirective for a definition of configuration actions.
+
+ This method should be called *after* any subdirective methods are
+ called during the processing of the (sub)directive whose subdirectives
+ are being processed. It may return an empty list.
+ """