]> granicus.if.org Git - python/commit
Add back some safeguards on the index elements that were lost in the
authorGuido van Rossum <guido@python.org>
Wed, 25 Feb 1998 17:50:03 +0000 (17:50 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 25 Feb 1998 17:50:03 +0000 (17:50 +0000)
commit044b9dc1d717d5ec127a19095f0d803a3249c5b3
tree052b81d9615e62c93206c3b5a692299d81d15598
parent2f32fbba3425d0d76bb7cdc962e92c46119abe42
Add back some safeguards on the index elements that were lost in the
last patch.  Dave Ascher found a case that dumps core without these:

def myComparison(x,y):
    return cmp(x%3,y%7)

z = range(12)
z.sort(myComparison)
Objects/listobject.c