Home | History | Annotate | Download | only in test

Lines Matching refs:dict

14 class defaultdict(dict):
16 dict.__init__(self)
21 return dict.__getitem__(self, key)
28 return dict.get(self, key, *args)
59 >>> a.merge({1:100, 2:200}) # use a dict method
104 class defaultdict2(dict):
108 dict.__init__(self)
113 return dict.__getitem__(self, key)
120 return dict.get(self, key, *args)
161 >>> isinstance([], dict)