Re: [Python-Dev] incompatible unittest changes

2007-10-19 Thread Jean-Paul Calderone
On Fri, 19 Oct 2007 15:51:51 -0700, Collin Winter <[EMAIL PROTECTED]> wrote: >On 10/19/07, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: >> In trunk after 2.5, equality and hashing for TestCase were added, changing >> the behavior so that two instances of TestCase for the same test method hash >

Re: [Python-Dev] incompatible unittest changes

2007-10-19 Thread Collin Winter
On 10/19/07, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > In trunk after 2.5, equality and hashing for TestCase were added, changing > the behavior so that two instances of TestCase for the same test method hash > the same and compare equal. This means two instances of TestCase for the > sa

[Python-Dev] incompatible unittest changes

2007-10-19 Thread Jean-Paul Calderone
In trunk after 2.5, equality and hashing for TestCase were added, changing the behavior so that two instances of TestCase for the same test method hash the same and compare equal. This means two instances of TestCase for the same test method cannot be added to a single set. Here's the change: