class documentation

Class representing an :class:`ast.Slice` node. >>> import astroid >>> node = astroid.extract_node('things[1:3]') >>> node <Subscript l.1 at 0x7f23b2e71f60> >>> node.slice <Slice l.1 at 0x7f23b2e71e80>

Method __init__ :param lineno: The line that this node appears on in the source code.
Method get_children Get the child nodes below this node.
Method getattr Undocumented
Method igetattr Infer the possible values of the given attribute on the slice.
Method postinit Do some setup after initialisation.
Method pytype Get the name of the type that this node represents.
Instance Variable lower The lower index in the slice.
Instance Variable step The step to take between indexes.
Instance Variable upper The upper index in the slice.
Method _wrap_attribute Wrap the empty attributes of the Slice in a Const node.
Class Variable _astroid_fields Node attributes that contain child nodes.
Property _proxied Undocumented

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.
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 col_offset The column that this node appears on in the source code.
Instance Variable end_col_offset The end column this node appears on in the source code.
Instance Variable end_lineno The last line this node appears on in the source code.
Instance Variable lineno The line that this node appears on in the source code.
Instance Variable parent The parent node in the syntax tree.
Instance Variable position Position of keyword(s) and name.
Property fromlineno The first line that this node appears on in the source code.
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 _infer_name Undocumented
Method _repr_name Get a name for nice representation.
Class Variable _explicit_inference Undocumented
Class Variable _other_fields Node attributes that do not contain child nodes.
Class Variable _other_other_fields Attributes that contain AST-dependent fields.
def __init__(self, lineno: int|None = None, col_offset: int|None = None, parent: NodeNG|None = None, *, end_lineno: int|None = None, end_col_offset: int|None = None): (source)

:param lineno: The line that this node appears on in the source code. :param col_offset: The column that this node appears on in the source code. :param parent: The parent node in the syntax tree. :param end_lineno: The last line this node appears on in the source code. :param end_col_offset: The end column this node appears on in the source code. Note: This is after the last symbol.

def get_children(self): (source)

Get the child nodes below this node.

def getattr(self, attrname, context: InferenceContext|None = None): (source)

Undocumented

def igetattr(self, attrname, context: InferenceContext|None = None): (source)

Infer the possible values of the given attribute on the slice. :param attrname: The name of the attribute to infer. :type attrname: str :returns: The inferred possible values. :rtype: iterable(NodeNG)

def postinit(self, lower: NodeNG|None = None, upper: NodeNG|None = None, step: NodeNG|None = None): (source)

Do some setup after initialisation. :param lower: The lower index in the slice. :param upper: The upper index in the slice. :param step: The step to take between index.

def pytype(self) -> Literal['builtins.slice']: (source)

Get the name of the type that this node represents. :returns: The name of the type.

The lower index in the slice.

The step to take between indexes.

The upper index in the slice.

def _wrap_attribute(self, attr): (source)

Wrap the empty attributes of the Slice in a Const node.

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

Node attributes that contain child nodes. This is redefined in most concrete classes.

@cached_property
_proxied: nodes.ClassDef = (source)

Undocumented