Lines Matching refs:dict
13 type2test = dict
17 self.dict = None
60 # dict.copy() must create a dictionary with a new unique version
81 # setting a key to the same value with dict.__setitem__
85 # setting a key to the same value with dict.update
108 # with dict.__setitem__() must change the version
113 # with dict.update() must change the version
124 # setting a key with dict.setdefault() must change the version
133 # deleting a key with dict.__delitem__() must change the version
153 # popitem() must change the version if the dict is not empty
156 # popitem() must not change the version if the dict is empty
175 # clear() must change the version if the dict is not empty
178 # clear() must not change the version if the dict is empty
182 class Dict(dict):