def insert(self, item, replace):

        section = self.return_section(item)
        if section == None:
            section = Items.insert(self, item, replace)
        else:
            if replace:
                section = Items.insert(self, item, replace)
        return section
 def __init__(self):
     Items.__init__(self)
 def count(self):
     return Items.count(self)