Lines Matching refs:collections
3 import collections
405 d = collections.OrderedDict()
407 d = collections.OrderedDict([])
410 d = collections.OrderedDict(zip(words, itertools.count()))
437 d = collections.OrderedDict(zip(words, itertools.count()))
1078 d = collections.defaultdict(int)
1081 d = collections.defaultdict(int, zip(words, itertools.count()))
1096 d = collections.Counter()
1098 d = collections.Counter('senselessness')
1107 d = collections.ChainMap()
1111 d = collections.ChainMap(dict(items))
1123 d = collections.ChainMap(dict(items), collections.OrderedDict(items))
1146 d = collections.deque()
1148 d = collections.deque(maxlen=7)
1151 d = collections.deque(zip(words, itertools.count()))
1163 d = collections.deque(zip(words, itertools.count()), maxlen=7)
1176 d = collections.UserDict()
1179 d = collections.UserDict(zip(words, itertools.count()))
1193 d = collections.UserList()
1196 d = collections.UserList(zip(words, itertools.count()))
1210 d = collections.UserString('')
1212 d = collections.UserString('the quick brown fox jumped over a lazy dog')