diff options
| author | Barry Warsaw | 2008-09-24 22:58:40 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-09-24 22:58:40 -0400 |
| commit | 9be793725d86c2bbd0bb0791bce4aecd80838e48 (patch) | |
| tree | 26dd368596b30883a5e9027b5584ac35b0d53878 /mailman/interfaces/usermanager.py | |
| parent | 05ee0005885c98adf676858bcba65527f6d29051 (diff) | |
| parent | d29eade5e68125c506950f260c8e685db75f653c (diff) | |
| download | mailman-9be793725d86c2bbd0bb0791bce4aecd80838e48.tar.gz mailman-9be793725d86c2bbd0bb0791bce4aecd80838e48.tar.zst mailman-9be793725d86c2bbd0bb0791bce4aecd80838e48.zip | |
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( |
