Home
last modified time | relevance | path

Searched refs:set2op_test (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_descr.py131 def set2op_test(self, a, b, c, res, stmt="a[b]=c", meth="__setitem__"): member in OperatorsTest
182 self.set2op_test([1,2], 1, 3, [1,3], "a[b]=c", "__setitem__")
216 self.set2op_test({1:2,3:4}, 2, 3, {1:2,2:3,3:4}, "a[b]=c",
329 self.set2op_test(spamlist([1,2]), 1, 3, spamlist([1,3]), "a[b]=c",
383 self.set2op_test(spamdict({1:2,3:4}), 2, 3, spamdict({1:2,2:3,3:4}),