class documentation

class Arguments(mixins.AssignTypeMixin, NodeNG): (source)

View In Hierarchy

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__
Method default​_value Get the default value for an argument.
Method find​_argname Get the index and AssignName node for given name.
Method format​_args Get the arguments formatted as string.
Method get​_children Get the child nodes below this node.
Method is​_argument Check if the given name is defined in the arguments.
Method postinit Do some setup after initialisation.
Class Variable assigned​_stmts Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation.
Class Variable col​_offset The column that this node appears on in the source code.
Class Variable end​_col​_offset The end column this node appears on in the source code. Note: This is after the last symbol.
Class Variable end​_lineno The last line this node appears on in the source code.
Class Variable lineno The line that this node appears on in the source code.
Instance Variable annotations The type annotations of arguments that can be passed positionally.
Instance Variable args The names of the required arguments.
Instance Variable defaults The default values for arguments that can be passed positionally.
Instance Variable kw​_defaults 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​_annotations The type annotations of arguments that cannot be passed positionally.
Instance Variable posonlyargs The arguments that can only be passed positionally.
Instance Variable posonlyargs​_annotations The type annotations of arguments that can only be passed positionally.
Instance Variable type​_comment​_args The type annotation, passed by a type comment, of each argument.
Instance Variable type​_comment​_kwonlyargs The type annotation, passed by a type comment, of each keyword only argument.
Instance Variable type​_comment​_posonlyargs 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​_name Undocumented
Class Variable _astroid​_fields Node attributes that contain child nodes.
Class Variable _other​_fields Node attributes that do not contain child nodes.

Inherited from AssignTypeMixin:

Method assign​_type Undocumented
Method _get​_filtered​_stmts method used in filter_stmts

Inherited from NodeNG:

Method __repr__ Undocumented
Method __str__ Undocumented
Method accept Visit this node using the given visitor.
Method as​_string Get the source code that this node represents.
Method block​_range Get a range from the given line number to where this node ends.
Method bool​_value Determine the boolean value of this node.
Method callable Whether this node defines something that is callable.
Method child​_sequence Search for the sequence that contains this child.
Method eq Undocumented
Method frame The first parent frame node.
Method has​_base 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​_class Instantiate an instance of the defined class.
Method last​_child An optimized version of list(get_children())[-1]
Method locate​_child Find the field of this node that contains the given child.
Method next​_sibling The next sibling statement node.
Method node​_ancestors Yield parent, grandparent, etc until there are no more.
Method nodes​_of​_class Get the nodes (including this one or below) of the given types.
Method op​_left​_associative Undocumented
Method op​_precedence Undocumented
Method parent​_of Check if this node is the parent of the given node.
Method previous​_sibling The previous sibling statement.
Method repr​_tree 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​_local 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​_function Whether this node indicates a function.
Class Variable is​_lambda Undocumented
Class Variable is​_statement Whether this node indicates a statement.
Class Variable optional​_assign 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​_source​_line Attempt to find the line that this node appears on.
Method _get​_assign​_nodes Undocumented
Method _get​_name​_nodes Undocumented
Method _get​_return​_nodes​_skip​_functions Undocumented
Method _get​_yield​_nodes​_skip​_lambdas Undocumented
Method _infer we don't know how to resolve a statement by default
Method _repr​_name Get a name for nice representation.
Class Variable _explicit​_inference Undocumented
Class Variable _other​_other​_fields Attributes that contain AST-dependent fields.
def __init__(self, vararg=None, kwarg=None, parent=None): (source)
Parameters
vararg:Optional[str]The name of the variable length arguments.
kwarg:Optional[str]The name of the variable length keyword arguments.
parent:Optional[NodeNG]The parent node in the syntax tree.
def default_value(self, argname): (source)
Get the default value for an argument.
Parameters
argname:strThe name of the argument to get the default value for.
Raises
NoDefaultIf there is no default value defined for the given argument.
def find_argname(self, argname, rec=False): (source)
Get the index and AssignName node for given name.
Parameters
argname:strThe name of the argument to search for.
rec:boolWhether 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.
def format_args(self): (source)
Get the arguments formatted as string.
Returns
strThe formatted arguments.
def get_children(self): (source)
Get the child nodes below this node.
def is_argument(self, name): (source)
Check if the given name is defined in the arguments.
Parameters
name:strThe name to check for.
Returns
boolTrue if the given name is defined in the arguments, False otherwise.
def postinit(self, args, defaults, kwonlyargs, kw_defaults, annotations, posonlyargs=None, kwonlyargs_annotations=None, posonlyargs_annotations=None, varargannotation=None, kwargannotation=None, type_comment_args=None, type_comment_kwonlyargs=None, type_comment_posonlyargs=None): (source)
Do some setup after initialisation.
Parameters
args:typing.List[AssignName]The names of the required arguments.
defaults:typing.List[NodeNG]The default values for arguments that can be passed positionally.
kwonlyargs:typing.List[AssignName]The keyword arguments that cannot be passed positionally.
kw​_defaults:typing.List[Optional[NodeNG]]The default values for keyword arguments that cannot be passed positionally.
annotations:typing.List[Optional[NodeNG]]The type annotations of arguments that can be passed positionally.
posonlyargs:Optional[typing.List[AssignName]]The arguments that can only be passed positionally.
kwonlyargs​_annotations:Optional[typing.List[Optional[NodeNG]]]The type annotations of arguments that cannot be passed positionally. This should always be passed in Python 3.
posonlyargs​_annotations:Optional[typing.List[Optional[NodeNG]]]The type annotations of arguments that can only be passed positionally. This should always be passed in Python 3.
varargannotation:Optional[NodeNG]The type annotation for the variable length arguments.
kwargannotation:Optional[NodeNG]The type annotation for the variable length keyword arguments.
type​_comment​_args:Optional[typing.List[Optional[NodeNG]]]The type annotation, passed by a type comment, of each positional argument.
type​_comment​_kwonlyargs:Optional[typing.List[Optional[NodeNG]]]Undocumented
type​_comment​_posonlyargs:Optional[typing.List[Optional[NodeNG]]]Undocumented
assigned_stmts: AssignedStmtsCall[Arguments] = (source)
Returns the assigned statement (non inferred) according to the assignment type. See astroid/protocols.py for actual implementation.
col_offset: None = (source)
The column that this node appears on in the source code.
end_col_offset: None = (source)
The end column this node appears on in the source code. Note: This is after the last symbol.
end_lineno: None = (source)
The last line this node appears on in the source code.
lineno: None = (source)
The line that this node appears on in the source code.
annotations = (source)
The type annotations of arguments that can be passed positionally.
args = (source)

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.

defaults = (source)
The default values for arguments that can be passed positionally.
kw_defaults = (source)
The default values for keyword arguments that cannot be passed positionally.
kwarg: Optional[str] = (source)
The name of the variable length keyword arguments.
kwargannotation = (source)
The type annotation for the variable length keyword arguments.
kwonlyargs = (source)
The keyword arguments that cannot be passed positionally.
kwonlyargs_annotations = (source)
The type annotations of arguments that cannot be passed positionally.
posonlyargs = (source)
The arguments that can only be passed positionally.
posonlyargs_annotations = (source)
The type annotations of arguments that can only be passed positionally.
type_comment_args = (source)

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.

type_comment_kwonlyargs = (source)

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.

type_comment_posonlyargs = (source)

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.

vararg: Optional[str] = (source)
The name of the variable length arguments.
varargannotation = (source)
The type annotation for the variable length arguments.
@decorators.cachedproperty
arguments = (source)
Get all the arguments for this node, including positional only and positional and keyword
@decorators.cachedproperty
fromlineno = (source)
The first line that this node appears on in the source code.
def _infer_name(self, frame, name): (source)

Undocumented

_astroid_fields: tuple[str, ...] = (source)

Node attributes that contain child nodes.

This is redefined in most concrete classes.

_other_fields: tuple[str, ...] = (source)
Node attributes that do not contain child nodes.