diff options
Diffstat (limited to 'libbe/util/id.py')
-rw-r--r-- | libbe/util/id.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbe/util/id.py b/libbe/util/id.py index 8c34303..8605d09 100644 --- a/libbe/util/id.py +++ b/libbe/util/id.py @@ -332,14 +332,14 @@ class ID (object): don't have to fetch all the ids in the storage repository but can restrict yourself to a specific branch. - You can generate ids of this sort with the :meth:`user` method, + You can generate ids of this sort with the :py:meth:`user` method, although in order to preform the truncation, your object (and its parents must define a `sibling_uuids` method. While users can use the convenient short user ids in the short term, the truncation will inevitably lead to name collision. To avoid that, we provide a non-truncated form of the short user ids - via the :meth:`long_user` method. These long user ids should be + via the :py:meth:`long_user` method. These long user ids should be converted to short user ids by intelligent user interfaces. See Also @@ -385,7 +385,7 @@ class ID (object): def child_uuids(child_storage_ids): """Extract uuid children from other children generated by - :meth:`ID.storage`. + :py:meth:`ID.storage`. This is useful for separating data belonging to a particular object directly from entries for its child objects. Since the |