Searched refs:initlist (Results 1 – 2 of 2) sorted by relevance
6 def __init__(self, initlist=None): argument8 if initlist is not None:10 if type(initlist) == type(self.data):11 self.data[:] = initlist12 elif isinstance(initlist, UserList):13 self.data[:] = initlist.data[:]15 self.data = list(initlist)
1391 def __init__(self, initlist=None): argument1392 UserList.__init__(self, initlist)