Home | History | Annotate | Download | only in Lib

Lines Matching refs:Dictionary

39     'Dictionary that remembers insertion order'
51 '''Initialize an ordered dictionary. The signature is the same as
74 # and the inherited dictionary is updated with the new key/value pair.
176 raise KeyError('dictionary is empty')
210 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
232 # -- the following methods support python 3.x style dictionary views --
319 >>> d = p._asdict() # convert to a dictionary
322 >>> Point(**d) # convert from a dictionary
409 or multiset. Elements are stored as dictionary keys and their counts
410 are stored as dictionary values.
531 Source can be an iterable, a dictionary, or another Counter instance.
576 Source can be an iterable, a dictionary, or another Counter instance.