コード例 #1
0
    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
コード例 #2
0
 def __init__(self):
     Items.__init__(self)
コード例 #3
0
 def count(self):
     return Items.count(self)