Re: [Python-Dev] unittest bug

2011-08-03 Thread Ethan Furman
Michael Foord wrote: On 3 Aug 2011, at 22:58, Ethan Furman wrote: Michael Foord wrote: On 3 Aug 2011, at 21:36, Ethan Furman wrote: My apologies for posting here first, but I'm not yet confident enough in my bug searching fu, and duplicates are a pain. Here's the issue: from unittest import

Re: [Python-Dev] unittest bug

2011-08-03 Thread Michael Foord
On 3 Aug 2011, at 22:58, Ethan Furman wrote: > Michael Foord wrote: >> On 3 Aug 2011, at 21:36, Ethan Furman wrote: >>> My apologies for posting here first, but I'm not yet confident enough in my >>> bug searching fu, and duplicates are a pain. >>> >>> Here's the issue: >>> >>> from unittest imp

Re: [Python-Dev] unittest bug

2011-08-03 Thread Ethan Furman
Michael Foord wrote: On 3 Aug 2011, at 21:36, Ethan Furman wrote: My apologies for posting here first, but I'm not yet confident enough in my bug searching fu, and duplicates are a pain. Here's the issue: from unittest import * That's the bug right there. Just import TestCase and main and e

Re: [Python-Dev] unittest bug

2011-08-03 Thread Michael Foord
On 3 Aug 2011, at 21:36, Ethan Furman wrote: > My apologies for posting here first, but I'm not yet confident enough in my > bug searching fu, and duplicates are a pain. > > Here's the issue: > > from unittest import * That's the bug right there. Just import TestCase and main and everything sh

[Python-Dev] unittest bug

2011-08-03 Thread Ethan Furman
My apologies for posting here first, but I'm not yet confident enough in my bug searching fu, and duplicates are a pain. Here's the issue: from unittest import * class MyTest(TestCase): def test_add(self): self.assertEqual(1,(2-1),"Sample Subraction Test") if __name__ == '__main__