Lines Matching full:three
61 self.assertTrue(replace("one!two!three!", '!', '@', 1)
62 == "one@two!three!")
63 self.assertTrue(replace("one!two!three!", '!', '@', 2)
64 == "one@two@three!")
65 self.assertTrue(replace("one!two!three!", '!', '@', 3)
66 == "one@two@three@")
67 self.assertTrue(replace("one!two!three!", '!', '@', 4)
68 == "one@two@three@")
74 self.assertTrue(replace("one!two!three!", '!', '@', 0)
75 == "one@two@three@")
76 self.assertTrue(replace("one!two!three!", '!', '@')
77 == "one@two@three@")
78 self.assertTrue(replace("one!two!three!", 'x', '@')
79 == "one!two!three!")
80 self.assertTrue(replace("one!two!three!", 'x', '@', 2)
81 == "one!two!three!")