def test_StrOp_repeat(): s: str s = 'a' * 2 s = 'a' * -1 s = 'test' * 5 s = 4 * 'bb' s = -40 * 'bb' s = 3 * 'a' * 3