282
282
def test_compare_mixed_depths(self):
283
283
stuple = self.module.StaticTuple
284
k1 = stuple(stuple('a',), stuple('b',))
285
k2 = stuple(stuple(stuple('c',), stuple('d',)),
289
287
# This requires comparing a StaticTuple to a 'string', and then
290
288
# interpreting that value in the next higher StaticTuple. This used to
291
289
# generate a PyErr_BadIternalCall. We now fall back to *something*.