Lines Matching refs:collections
3 import collections
397 d = collections.OrderedDict()
399 d = collections.OrderedDict([])
402 d = collections.OrderedDict(zip(words, itertools.count()))
429 d = collections.OrderedDict(zip(words, itertools.count()))
1070 d = collections.defaultdict(int)
1073 d = collections.defaultdict(int, zip(words, itertools.count()))
1088 d = collections.Counter()
1090 d = collections.Counter('senselessness')
1099 d = collections.ChainMap()
1103 d = collections.ChainMap(dict(items))
1115 d = collections.ChainMap(dict(items), collections.OrderedDict(items))
1138 d = collections.deque()
1140 d = collections.deque(maxlen=7)
1143 d = collections.deque(zip(words, itertools.count()))
1155 d = collections.deque(zip(words, itertools.count()), maxlen=7)
1168 d = collections.UserDict()
1171 d = collections.UserDict(zip(words, itertools.count()))
1185 d = collections.UserList()
1188 d = collections.UserList(zip(words, itertools.count()))
1202 d = collections.UserString('')
1204 d = collections.UserString('the quick brown fox jumped over a lazy dog')