diff options
Diffstat (limited to 'mailman/interfaces/usermanager.py')
| -rw-r--r-- | mailman/interfaces/usermanager.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mailman/interfaces/usermanager.py b/mailman/interfaces/usermanager.py index 702370593..72dc8e37f 100644 --- a/mailman/interfaces/usermanager.py +++ b/mailman/interfaces/usermanager.py @@ -75,10 +75,13 @@ class IUserManager(Interface): """ def get_address(address): - """Find and return an IAddress. + """Find and return the `IAddress` matching a text address. - 'address' is a text email address. None is returned if there is no - registered IAddress for the given text address. + :param address: the text email address + :type address: string + :return: The matching `IAddress` object, or None if no registered + `IAddress` matches the text address + :rtype: `IAddress` or None """ addresses = Attribute( |
