From 5ed58fdb4213908b406fe625d0727ecc15dbd1cf Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 15 Aug 2008 03:45:07 +0000 Subject: 177: Docstring cleanup in NameSpace.__call__() --- ipalib/plugable.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipalib/plugable.py') diff --git a/ipalib/plugable.py b/ipalib/plugable.py index c58114a9..b8d2b390 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -532,7 +532,8 @@ class NameSpace(DictProxy): def __call__(self): """ - Iterates through the members of this NameSpace. + Iterates (in ascending order by name) through the members in this + NameSpace. """ for key in self: yield self[key] -- cgit