Skip to content
Snippets Groups Projects
Commit d3b790bb authored by Balazs Lecz's avatar Balazs Lecz
Browse files

Fix a couple of pydoc syntax problems


Signed-off-by: default avatarBalazs Lecz <leczb@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent 41b10cf6
No related branches found
No related tags found
No related merge requests found
......@@ -447,9 +447,10 @@ class SimpleStore(object):
The separator character is a newline.
The return value can be parsed using uidpool.ParseUidPool():
The return value can be parsed using uidpool.ParseUidPool()::
ss = ssconf.SimpleStore()
uid_pool = uidpool.ParseUidPool(ss.GetUidPool(), separator="\n")
uid_pool = uidpool.ParseUidPool(ss.GetUidPool(), separator="\\n")
"""
data = self._ReadFile(constants.SS_UID_POOL)
......
......@@ -222,16 +222,17 @@ class LockedUid(object):
def RequestUnusedUid(all_uids):
"""Tries to find an unused uid from the uid-pool, locks it and returns it.
Usage pattern:
Usage pattern
=============
1) When starting a process
1. When starting a process::
from ganeti import ssconf
from ganeti import uidpool
# Get list of all user-ids in the uid-pool from ssconf
ss = ssconf.SimpleStore()
uid_pool = uidpool.ParseUidPool(ss.GetUidPool(), separator="\n")
uid_pool = uidpool.ParseUidPool(ss.GetUidPool(), separator="\\n")
all_uids = set(uidpool.ExpandUidPool(uid_pool))
uid = uidpool.RequestUnusedUid(all_uids)
......@@ -243,7 +244,7 @@ def RequestUnusedUid(all_uids):
# Return the UID to the pool
uidpool.ReleaseUid(uid)
2) Stopping a process
2. Stopping a process::
from ganeti import uidpool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment