[issue15802] Illegal test for mailbox

2012-08-29 Thread Ezio Melotti
Ezio Melotti added the comment: +if int(groups[0]) == int(previous_groups[0]): +self.assertGreaterEqual(int(groups[1]), int(previous_groups[1]), This checks that int(groups[1]) >= int(previous_groups[1]) if int(groups[0]) == int(previous_groups[0]) whereas

[issue15802] Illegal test for mailbox

2012-08-28 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15802] Illegal test for mailbox

2012-08-28 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue15802] Illegal test for mailbox

2012-08-28 Thread R. David Murray
R. David Murray added the comment: Looks right to me on a quick scan, but I'm not familiar with that test. -- nosy: +petri.lehtinen ___ Python tracker ___ ___

[issue15802] Illegal test for mailbox

2012-08-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file27037/test_mailbox_create_tmp-2.7.patch ___ Python tracker ___ ___ Python

[issue15802] Illegal test for mailbox

2012-08-28 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Test for mailbox contains meaningless asserts. Here is a patch that corrects testing, if I correctly understand it. -- components: Tests files: test_mailbox_create_tmp.patch keywords: patch messages: 169307 nosy: akuchling, barry, r.david.murray, st