summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-15 03:45:07 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-15 03:45:07 +0000
commit5ed58fdb4213908b406fe625d0727ecc15dbd1cf (patch)
tree94dcfe12f57da467505db5f95861ade54a29098e /ipalib
parentdb8099febcb9c385eadfc4461dafa32df31bcbc0 (diff)
downloadfreeipa-5ed58fdb4213908b406fe625d0727ecc15dbd1cf.tar.gz
freeipa-5ed58fdb4213908b406fe625d0727ecc15dbd1cf.tar.xz
freeipa-5ed58fdb4213908b406fe625d0727ecc15dbd1cf.zip
177: Docstring cleanup in NameSpace.__call__()
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugable.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index c58114a94..b8d2b3906 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]