From 2a38e91333a490c13b9580d2c7fd25eeb45f5d79 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Thu, 8 Nov 2012 18:51:03 +0100 Subject: [PATCH] rlib2: Document two previously undocumented functions Commit 208a6cff just included empty docstrings. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/rapi/rlib2.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/rapi/rlib2.py b/lib/rapi/rlib2.py index f4dc219fd..d31a5b4e1 100644 --- a/lib/rapi/rlib2.py +++ b/lib/rapi/rlib2.py @@ -1248,7 +1248,11 @@ class R_2_instances_name_console(baserlib.ResourceBase): def _GetQueryFields(args): - """ + """Tries to extract C{fields} query parameter. + + @type args: dictionary + @rtype: list of string + @raise http.HttpBadRequest: When parameter can't be found """ try: @@ -1260,7 +1264,10 @@ def _GetQueryFields(args): def _SplitQueryFields(fields): - """ + """Splits fields as given for a query request. + + @type fields: string + @rtype: list of string """ return [i.strip() for i in fields.split(",")] -- GitLab