diff options
| author | Barry Warsaw | 2008-09-10 23:12:08 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-09-10 23:12:08 -0400 |
| commit | a29f10d75e3738e9498bc8c6d67c4fc5a6924210 (patch) | |
| tree | 07e52d6d0750d9554398a57936156a1d52e4b122 /mailman/interfaces/usermanager.py | |
| parent | b42f3204f7223f3ce9ae306dcb2cec10853eca8d (diff) | |
| download | mailman-a29f10d75e3738e9498bc8c6d67c4fc5a6924210.tar.gz mailman-a29f10d75e3738e9498bc8c6d67c4fc5a6924210.tar.zst mailman-a29f10d75e3738e9498bc8c6d67c4fc5a6924210.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( |
