class documentation

class Node:

Known subclasses: django.db.migrations.graph.DummyNode

View In Hierarchy

A single node in the migration graph. Contains direct links to adjacent nodes in either direction.
Method __eq__ Undocumented
Method __getitem__ Undocumented
Method __hash__ Undocumented
Method __init__ Undocumented
Method __lt__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
Method add​_child Undocumented
Method add​_parent Undocumented
Instance Variable children Undocumented
Instance Variable key Undocumented
Instance Variable parents Undocumented
def __eq__(self, other):

Undocumented

def __getitem__(self, item):

Undocumented

def __hash__(self):

Undocumented

def __init__(self, key):

Undocumented

def __lt__(self, other):

Undocumented

def __repr__(self):

Undocumented

def __str__(self):

Undocumented

def add_child(self, child):

Undocumented

def add_parent(self, parent):

Undocumented

children: set =

Undocumented

key =

Undocumented

parents: set =

Undocumented