class documentation

Undocumented

Method __hash__ Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Method __len__ Undocumented
Method __next__ Undocumented
Method get_actual_container return the actual object for this class. E.g. Set class will return set(self.elts) instead of list
Method get_index get the index number of var Also handle nested container, specifically in : (a, b, c), d, e = z
Instance Variable elts Undocumented
Instance Variable _iter Undocumented

Inherited from BaseContainer:

Method __str__ Undocumented

Inherited from BaseNode (via BaseContainer):

Static Method get_inferred Undocumented
Method __contains__ Undocumented
Method accept Undocumented
Method dunder_lookup try to resolve the dunder method
Method generic_visit Undocumented
Method get_bound_conditions Undocumented
Method get_children Undocumented
Method get_from_outer find the definition of `var` from outer scope recursively. Skip param will determine how many parent scope to skip :param var: variable of interest :param skip: how many layer of parent scope to skip :return:...
Method get_parent_of_type Undocumented
Method get_statements Undocumented
Method get_stmt_target Undocumented
Method get_target_instance get the assigning target instance rather than scope(). See #mr68u a.b.c = node calling node.get_target_instance() will return `a.b.c.instance()`
Method is_children check if the given node is part of 'self' or children
Method iter_fields Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields`` that is present on *node*.
Method prepare_inferred_value Undocumented
Method scope return the first containing scope
Method statement Undocumented
Instance Variable col_offset Undocumented
Instance Variable explicit_inference Undocumented
Instance Variable lineno Undocumented
Instance Variable parent Undocumented
Instance Variable refer_to_block Undocumented
Class Variable _fields Undocumented

Inherited from Proxy (via BaseContainer, BaseNode, BaseInstance):

Method __getattr__ Undocumented
Method __repr__ Undocumented
Instance Variable obj Undocumented
def __hash__(self): (source)

Undocumented

def __init__(self, lineno, col_offset, parent, elts=None): (source)
def __iter__(self): (source)

Undocumented

def __len__(self): (source)

Undocumented

def __next__(self): (source)

Undocumented

def get_actual_container(self): (source)

return the actual object for this class. E.g. Set class will return set(self.elts) instead of list

def get_index(self, var): (source)

get the index number of var Also handle nested container, specifically in : (a, b, c), d, e = z

_iter = (source)

Undocumented