Exemplo n.º 1
0
    def __init__(self, time):
        LinkedList.__init__(self)
        Node.__init__(self)

        self.views = {}

        self.time = time
Exemplo n.º 2
0
 def __init__(self, name, limit = 1000):
     LinkedList.__init__(self, None);
     self.top_node = self.get_head_node();
     self.size = 0;
     self.name = name;
     self.limit = limit;
Exemplo n.º 3
0
 def __init__(self, limit, *args):
     self.limit = limit
     self.size = 0
     LinkedList.__init__(self, *args[:limit])
Exemplo n.º 4
0
 def __init__(self):
     LinkedList.__init__(self)
     self.tail = None
Exemplo n.º 5
0
 def __init__(self, size=0):
     LinkedList.__init__(self, size=None)
Exemplo n.º 6
0
 def __init__(self):
     LinkedList.__init__(self)
Exemplo n.º 7
0
 def __init__(self):
     self.myList = LinkedList.__init__(self)
Exemplo n.º 8
0
 def __init__(self, fromList=None):
     LinkedList.__init__(self, fromList)