Searched refs:initlist (Results 1 – 1 of 1) sorted by relevance
1177 def __init__(self, initlist=None): argument1179 if initlist is not None:1181 if type(initlist) == type(self.data):1182 self.data[:] = initlist1183 elif isinstance(initlist, UserList):1184 self.data[:] = initlist.data[:]1186 self.data = list(initlist)