Searched refs:set2op_test (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 133 def set2op_test(self, a, b, c, res, stmt="a[b]=c", meth="__setitem__"): member in OperatorsTest 184 self.set2op_test([1,2], 1, 3, [1,3], "a[b]=c", "__setitem__") 218 self.set2op_test({1:2,3:4}, 2, 3, {1:2,2:3,3:4}, "a[b]=c", 331 self.set2op_test(spamlist([1,2]), 1, 3, spamlist([1,3]), "a[b]=c", 385 self.set2op_test(spamdict({1:2,3:4}), 2, 3, spamdict({1:2,2:3,3:4}),
|