Method Summary |
|
__init__(self,
uid,
verbosity)
|
|
__repr__(self)
|
list of Var
|
keywords (self)
Return the keyword parameters for the function/method documented by this
FuncDoc . |
|
Accessors |
list of Var
|
parameters (self)
Return the positional parameters for the function/method documented by this
FuncDoc . |
Var or None
|
vararg (self)
Return the vararg parameter for the function/method documented by this
FuncDoc , or None if it has no vararg
parameter. |
Var or None
|
kwarg (self)
Return the keyword parameter for the function/method documented by this
FuncDoc , or None if it has no keyword
parameter. |
Var or None
|
returns (self)
Return the return value for the function/method documented by this
FuncDoc , or None if it has no return value. |
list of Raise
|
raises (self)
Return a list of exceptions that may be raised by the function/method
documented by this FuncDoc . |
Link or None
|
overrides (self)
Return the method overridden by the method documented by this
FuncDoc ; or None if the method documented by
this FuncDoc does not override any method, or if this
FuncDoc documents a function. |
boolean
|
matches_override (self)
Return true if the method documented by this FuncDoc overrides
another method, and its signature matches the signature of the overridden
method. |
list of Var
|
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. |