diff options
author | W. Trevor King <wking@drexel.edu> | 2011-05-12 13:22:55 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2011-05-12 13:22:55 -0400 |
commit | 571dfd378b59da55d9164185af478878137f2fa2 (patch) | |
tree | 2d036c0c51f9b65df1bcfda33d2fc5812159fcab /libbe/util | |
parent | ef9efac025ff5f31d5e2c2b7fa5331fd52bf80eb (diff) | |
download | bugseverywhere-571dfd378b59da55d9164185af478878137f2fa2.tar.gz |
Update libbe.util.id other_uuids documentation (may contain uuid).
Diffstat (limited to 'libbe/util')
-rw-r--r-- | libbe/util/id.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbe/util/id.py b/libbe/util/id.py index 8d8c75c..aa129a3 100644 --- a/libbe/util/id.py +++ b/libbe/util/id.py @@ -224,8 +224,8 @@ def _truncate(uuid, other_uuids, min_length=3): uuid : str The UUID to truncate. other_uuids : list of str - The other UUIDs which the truncation *might* (but doesn't) refer - to. + The other UUIDs which the truncation *might* refer to. May + contain `uuid`. min_length : int Avoid rapidly outdated truncations, even if they are unique now. @@ -255,8 +255,8 @@ def _expand(truncated_id, common, other_ids): `other_ids`. Not used by ``_expand``, but passed on to the matching exceptions if they occur. other_uuids : list of str - The other UUIDs which the truncation *might* (but doesn't) refer - to. + The other UUIDs which the truncation *might* refer to. May + contain `uuid`. Raises ------ |