Home | Trees | Indices | Help |
|
---|
|
object --+ | argument_t
class, that describes argument of "callable" declaration
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Properties | |
str |
name Argument name. |
ellipsis bool, if True argument represents ellipsis ( "..." ) in function definition |
|
str |
default_value Argument's default value or None. |
type_t |
type The type of the argument. |
str |
attributes GCCXML attributes, set using __attribute__((gccxml("..."))) |
Method Details |
|
constructs new argument_t instance return argument_t( name=keywd.get( 'name', self.name ) , type=keywd.get( 'type', self.type ) , default_value=keywd.get( 'default_value', self.default_value ) , attributes=keywd.get( 'attributes', self.attributes ) ) |
|
Property Details |
ellipsisbool, if True argument represents ellipsis ( "..." ) in function definition |
default_valueArgument's default value or None.
|
typeThe type of the argument. |
attributesGCCXML attributes, set using __attribute__((gccxml("...")))
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Oct 20 09:00:18 2008 | http://epydoc.sourceforge.net |