from list import List class Queue(List): def __init__(self,data): List.__init__(self,data,"Queue") print "Making queue"