[issue25551] Event's test_reset_internal_locks too fragile

2016-04-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 110dfb244b27 by Berker Peksag in branch '3.5': Issue #25551: Test condition behavior instead of its internals https://hg.python.org/cpython/rev/110dfb244b27 New changeset 9694185cdd9f by Berker Peksag in branch 'default': Issue #25551: Test

[issue25551] Event's test_reset_internal_locks too fragile

2016-04-29 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Nir! -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.5 ___ Python tracker

[issue25551] Event's test_reset_internal_locks too fragile

2015-11-04 Thread Nir Soffer
Changes by Nir Soffer : -- keywords: +patch Added file: http://bugs.python.org/file40941/0001-Issue-254074-Test-condition-behavior-instead-of-inte.patch ___ Python tracker

[issue25551] Event's test_reset_internal_locks too fragile

2015-11-04 Thread Nir Soffer
New submission from Nir Soffer: test_reset_internal_locks is looking at Event's _cond._lock - this make it harder to change internal details of the Condition object and make the test fragile. We should test the condition behavior instead. -- components: Tests messages: 254074 nosy: