diff options
author | Ben Reynwar <ben@reynwar.net> | 2012-08-14 07:12:53 -0700 |
---|---|---|
committer | Ben Reynwar <ben@reynwar.net> | 2012-08-14 07:22:43 -0700 |
commit | 3e46aef392ba9b2e63bbfefefdb7178cc87049ab (patch) | |
tree | 942e3a7a78344b638859b9f65ce37cacb070eb01 /gr-digital/python/modulation_utils.py | |
parent | fe96ee8d82b2666951cf3cef8f7f5d991396273f (diff) |
docs: Changed arguments in python docstrings to new formatting style.
Diffstat (limited to 'gr-digital/python/modulation_utils.py')
-rw-r--r-- | gr-digital/python/modulation_utils.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gr-digital/python/modulation_utils.py b/gr-digital/python/modulation_utils.py index cb3a9812d4..d499094d05 100644 --- a/gr-digital/python/modulation_utils.py +++ b/gr-digital/python/modulation_utils.py @@ -74,11 +74,10 @@ def extract_kwargs_from_options(function, excluded_args, options): but in that case the default provided in the __init__ argument list will be used since there is no kwargs entry.) - @param function: the function whose parameter list will be examined - @param excluded_args: function arguments that are NOT to be added to the dictionary - @type excluded_args: sequence of strings - @param options: result of command argument parsing - @type options: optparse.Values + Args: + function: the function whose parameter list will be examined + excluded_args: function arguments that are NOT to be added to the dictionary (sequence of strings) + options: result of command argument parsing (optparse.Values) """ # Try this in C++ ;) |