| Method Summary | 
|  | __init__(self,
          uid,
          verbosity) | 
|  | __repr__(self) | 
| listofVar | keywords(self)Return the keyword parameters for the function/method documented by this
 FuncDoc. | 
  |  | 
  | Accessors | 
| listofVar | parameters(self)Return the positional parameters for the function/method documented by this
 FuncDoc. | 
| VarorNone | vararg(self)Return the vararg parameter for the function/method documented by this
 FuncDoc, orNoneif it has no vararg 
parameter. | 
| VarorNone | kwarg(self)Return the keyword parameter for the function/method documented by this
 FuncDoc, orNoneif it has no keyword 
parameter. | 
| VarorNone | returns(self)Return the return value for the function/method documented by this
 FuncDoc, orNoneif it has no return value. | 
| listofRaise | raises(self)Return a list of exceptions that may be raised by the function/method 
documented by this
 FuncDoc. | 
| LinkorNone | overrides(self)Return the method overridden by the method documented by this
 FuncDoc; orNoneif the method documented by 
thisFuncDocdoes not override any method, or if thisFuncDocdocuments a function. | 
| boolean | matches_override(self)Return true if the method documented by this
 FuncDocoverrides 
another method, and its signature matches the signature of the overridden 
method. | 
| listofVar | parameter_list(self)Return a (flat) list of all parameters for the function/method documented by 
this
 FuncDoc. | 
  | Inherited from ObjDoc:by_group,defines_groups,descr,field_values,fields,groups,has_docstring,sortorder,summary,uid | 
  | Inheritance | 
|  | find_override(self,
          bases)Find the method that this method overrides.
 |