class Arguments(mixins.AssignTypeMixin, NodeNG): (source)
Constructor: Arguments(vararg, kwarg, parent)
Class representing an ast.arguments
node.
An Arguments
node represents that arguments in a
function definition.
>>> import astroid >>> node = astroid.extract_node('def foo(bar): pass') >>> node <FunctionDef.foo l.1 at 0x7effe1db8198> >>> node.args <Arguments l.1 at 0x7effe1db82e8>
Method | __init__ |
No summary |
Method | default |
Get the default value for an argument. |
Method | find |
Get the index and AssignName node for given name. |
Method | format |
Get the arguments formatted as string. |
Method | get |
Get the child nodes below this node. |
Method | is |
Check if the given name is defined in the arguments. |
Method | postinit |
Do some setup after initialisation. |
Class Variable | assigned |
Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation. |
Instance Variable | annotations |
The type annotations of arguments that can be passed positionally. |
Instance Variable | args |
The names of the required arguments. |
Instance Variable | col |
The column that this node appears on in the source code. |
Instance Variable | defaults |
The default values for arguments that can be passed positionally. |
Instance Variable | end |
The end column this node appears on in the source code. Note: This is after the last symbol. |
Instance Variable | end |
The last line this node appears on in the source code. |
Instance Variable | kw |
The default values for keyword arguments that cannot be passed positionally. |
Instance Variable | kwarg |
The name of the variable length keyword arguments. |
Instance Variable | kwargannotation |
The type annotation for the variable length keyword arguments. |
Instance Variable | kwonlyargs |
The keyword arguments that cannot be passed positionally. |
Instance Variable | kwonlyargs |
The type annotations of arguments that cannot be passed positionally. |
Instance Variable | lineno |
The line that this node appears on in the source code. |
Instance Variable | posonlyargs |
The arguments that can only be passed positionally. |
Instance Variable | posonlyargs |
The type annotations of arguments that can only be passed positionally. |
Instance Variable | type |
The type annotation, passed by a type comment, of each argument. |
Instance Variable | type |
The type annotation, passed by a type comment, of each keyword only argument. |
Instance Variable | type |
The type annotation, passed by a type comment, of each positional argument. |
Instance Variable | vararg |
The name of the variable length arguments. |
Instance Variable | varargannotation |
The type annotation for the variable length arguments. |
Property | arguments |
Get all the arguments for this node, including positional only and positional and keyword |
Property | fromlineno |
The first line that this node appears on in the source code. |
Method | _infer |
Undocumented |
Class Variable | _astroid |
Node attributes that contain child nodes. |
Class Variable | _other |
Node attributes that do not contain child nodes. |
Inherited from AssignTypeMixin
:
Method | assign |
Undocumented |
Method | _get |
method used in filter_stmts |
Inherited from NodeNG
(via AssignTypeMixin
):
Method | __repr__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | accept |
Visit this node using the given visitor. |
Method | as |
Get the source code that this node represents. |
Method | block |
Get a range from the given line number to where this node ends. |
Method | bool |
Determine the boolean value of this node. |
Method | callable |
Whether this node defines something that is callable. |
Method | child |
Search for the sequence that contains this child. |
Method | eq |
Undocumented |
Method | frame |
The first parent frame node. |
Method | has |
Check if this node inherits from the given type. |
Method | infer |
Get a generator of the inferred values. |
Method | inferred |
Get a list of the inferred values. |
Method | instantiate |
Instantiate an instance of the defined class. |
Method | last |
An optimized version of list(get_children())[-1] |
Method | locate |
Find the field of this node that contains the given child. |
Method | next |
The next sibling statement node. |
Method | node |
Yield parent, grandparent, etc until there are no more. |
Method | nodes |
Get the nodes (including this one or below) of the given types. |
Method | op |
Undocumented |
Method | op |
Undocumented |
Method | parent |
Check if this node is the parent of the given node. |
Method | previous |
The previous sibling statement. |
Method | repr |
Get a string representation of the AST from this node. |
Method | root |
Return the root node of the syntax tree. |
Method | scope |
The first parent node defining a new scope. These can be Module, FunctionDef, ClassDef, Lambda, or GeneratorExp nodes. |
Method | set |
Define that the given name is declared in the given statement node. |
Method | statement |
The first parent node, including self, marked as statement node. |
Class Variable | is |
Whether this node indicates a function. |
Class Variable | is |
Undocumented |
Class Variable | is |
Whether this node indicates a statement. |
Class Variable | optional |
Whether this node optionally assigns a variable. |
Instance Variable | parent |
The parent node in the syntax tree. |
Property | tolineno |
The last line that this node appears on in the source code. |
Method | _fixed |
Attempt to find the line that this node appears on. |
Method | _get |
Undocumented |
Method | _get |
Undocumented |
Method | _get |
Undocumented |
Method | _get |
Undocumented |
Method | _infer |
we don't know how to resolve a statement by default |
Method | _repr |
Get a name for nice representation. |
Class Variable | _explicit |
Undocumented |
Class Variable | _other |
Attributes that contain AST-dependent fields. |
str | None
= None, kwarg: str | None
= None, parent: NodeNG | None
= None):
(source)
¶
astroid.nodes.NodeNG.__init__
Parameters | |
vararg:str | None | The name of the variable length arguments. |
kwarg:str | None | The name of the variable length keyword arguments. |
parent:NodeNG | None | The parent node in the syntax tree. |
Get the default value for an argument.
Parameters | |
argname:str | The name of the argument to get the default value for. |
Raises | |
NoDefault | If there is no default value defined for the given argument. |
Get the index and AssignName
node for given name.
Parameters | |
argname:str | The name of the argument to search for. |
rec:bool | Whether or not to include arguments in unpacked tuples in the search. |
Returns | |
tuple(str or None, AssignName or None) | The index and node for the argument. |
Check if the given name is defined in the arguments.
Parameters | |
name:str | The name to check for. |
Returns | |
bool | True if the given name is defined in the arguments, False otherwise. |
list[ AssignName]
, defaults: list[ NodeNG]
, kwonlyargs: list[ AssignName]
, kw_defaults: list[ NodeNG | None]
, annotations: list[ NodeNG | None]
, posonlyargs: list[ AssignName] | None
= None, kwonlyargs_annotations: list[ NodeNG | None] | None
= None, posonlyargs_annotations: list[ NodeNG | None] | None
= None, varargannotation: NodeNG | None
= None, kwargannotation: NodeNG | None
= None, type_comment_args: list[ NodeNG | None] | None
= None, type_comment_kwonlyargs: list[ NodeNG | None] | None
= None, type_comment_posonlyargs: list[ NodeNG | None] | None
= None):
(source)
¶
Do some setup after initialisation.
Parameters | |
args:list[ | The names of the required arguments. |
defaults:list[ | The default values for arguments that can be passed positionally. |
kwonlyargs:list[ | The keyword arguments that cannot be passed positionally. |
kwlist[ | The default values for keyword arguments that cannot be passed positionally. |
annotations:list[ | The type annotations of arguments that can be passed positionally. |
posonlyargs:list[ | The arguments that can only be passed positionally. |
kwonlyargslist[ | The type annotations of arguments that cannot be passed positionally. This should always be passed in Python 3. |
posonlyargslist[ | The type annotations of arguments that can only be passed positionally. This should always be passed in Python 3. |
varargannotation:NodeNG | None | The type annotation for the variable length arguments. |
kwargannotation:NodeNG | None | The type annotation for the variable length keyword arguments. |
typelist[ | The type annotation, passed by a type comment, of each positional argument. |
typelist[ | Undocumented |
typelist[ | Undocumented |
Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation.
The names of the required arguments.
Can be None if the associated function does not have a retrievable signature and the arguments are therefore unknown. This happens with builtin functions implemented in C.
astroid.nodes.NodeNG.end_col_offset
The end column this node appears on in the source code. Note: This is after the last symbol.
The type annotation, passed by a type comment, of each argument.
If an argument does not have a type comment, the value for that argument will be None.
The type annotation, passed by a type comment, of each keyword only argument.
If an argument does not have a type comment, the value for that argument will be None.
The type annotation, passed by a type comment, of each positional argument.
If an argument does not have a type comment, the value for that argument will be None.
astroid.nodes.NodeNG.fromlineno
The first line that this node appears on in the source code.
astroid.nodes.NodeNG._astroid_fields
Node attributes that contain child nodes.
This is redefined in most concrete classes.