diff options
| author | Barry Warsaw | 2009-12-06 17:13:45 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-12-06 17:13:45 -0500 |
| commit | 795fda3981208376c6e0a9b42f412f9a4c158da4 (patch) | |
| tree | 5af64b01fc5a5c47a4c3a91aefd0b9cf5ff92fa3 /src/mailman/interfaces/roster.py | |
| parent | 49d5cdcd25627d639ca580a8d821414ef0be2c1f (diff) | |
| download | mailman-795fda3981208376c6e0a9b42f412f9a4c158da4.tar.gz mailman-795fda3981208376c6e0a9b42f412f9a4c158da4.tar.zst mailman-795fda3981208376c6e0a9b42f412f9a4c158da4.zip | |
Diffstat (limited to 'src/mailman/interfaces/roster.py')
| -rw-r--r-- | src/mailman/interfaces/roster.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mailman/interfaces/roster.py b/src/mailman/interfaces/roster.py index 9fb648be1..d729f232b 100644 --- a/src/mailman/interfaces/roster.py +++ b/src/mailman/interfaces/roster.py @@ -54,8 +54,10 @@ class IRoster(Interface): """) def get_member(address): - """Return the IMember for the given address. + """Get the member for the given address. - 'address' is a text email address. If no matching member is found, - None is returned. + :param address: The email address to search for. + :type address: text + :return: The member if found, otherwise None + :rtype: `IMember` or None """ |
