This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients Jon.Oberheide, neologix, pitrou, r.david.murray, sbt, vstinner
Date 2012-04-12.14:20:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334240407.83.0.275390787859.issue14532@psf.upfronthosting.co.za>
In-reply-to
Content
Why not just

    def time_independent_equals(a, b):
        return len(a) == len(b) and sum(x != y for x, y in zip(a, b)) == 0
History
Date User Action Args
2012-04-12 14:20:07sbtsetrecipients: + sbt, pitrou, vstinner, r.david.murray, neologix, Jon.Oberheide
2012-04-12 14:20:07sbtsetmessageid: <1334240407.83.0.275390787859.issue14532@psf.upfronthosting.co.za>
2012-04-12 14:20:05sbtlinkissue14532 messages
2012-04-12 14:20:05sbtcreate