| H A D | ksft.py | 115 def ksft_eq(a, b, comment=""): 118 _fail("Check failed", a, "!=", b, comment) argument 121 def ksft_ne(a, b, comment=""): 124 _fail("Check failed", a, "==", b, comment) 127 def ksft_true(a, comment=""): 129 _fail("Check failed", a, "does not eval to True", comment) argument 132 def ksft_not_none(a, comment=""): 134 _fail("Check failed", a, "is None", comment) 137 def ksft_in(a, b, comment=""): 139 _fail("Check failed", a, "not in", b, comment) 58 ksft_eq(a, b, comment="") global() argument 64 ksft_ne(a, b, comment="") global() argument 70 ksft_true(a, comment="") global() argument 75 ksft_in(a, b, comment="") global() argument 80 ksft_not_in(a, b, comment="") global() argument 85 ksft_is(a, b, comment="") global() argument 90 ksft_ge(a, b, comment="") global() argument 95 ksft_lt(a, b, comment="") global() argument [all...] |