Lines Matching full:change
66 # creating new keys must change the version
70 # changing values must change the version
78 # setting a key must change the version
82 # must change the version
86 # must change the version
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
127 # don't change the version if the key already exists
133 # deleting a key with dict.__delitem__() must change the version
136 # don't change the version if the key doesn't exist
143 # pop() must change the version if the key exists
146 # pop() must not change the version if the key does not exist
153 # popitem() must change the version if the dict is not empty
156 # popitem() must not change the version if the dict is empty
163 # update() calling with no argument must not change the version
166 # update() must change the version
175 # clear() must change the version if the dict is not empty
178 # clear() must not change the version if the dict is empty