177: Docstring cleanup in NameSpace.__call__()

This commit is contained in:
Jason Gerard DeRose 2008-08-15 03:45:07 +00:00
parent db8099febc
commit 5ed58fdb42

View File

@ -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]