[issue28728] test_host_resolution in test_socket fails on duplicate assert

2016-11-18 Thread SilentGhost
Changes by SilentGhost : Removed file: http://bugs.python.org/file45524/test_socket.diff ___ Python tracker ___

[issue28728] test_host_resolution in test_socket fails on duplicate assert

2016-11-17 Thread R. David Murray
R. David Murray added the comment: It might be interesting to stick a 'with subtest' in there and see which address is failing to raise. -- nosy: +r.david.murray ___ Python tracker

[issue28728] test_host_resolution in test_socket fails on duplicate assert

2016-11-17 Thread Martin Panter
Martin Panter added the comment: That’s not exactly a duplicate; one is host-by-NAME, the other host-by-ADDR -- nosy: +martin.panter ___ Python tracker

[issue28728] test_host_resolution in test_socket fails on duplicate assert

2016-11-17 Thread SilentGhost
New submission from SilentGhost: Commit 540a9c69c2ea introduced double assertRaises which now is failing on ubuntu 16.10 If it is necessary, then it's not obvious why and there is no comment, but here is the one-line patch that removes the duplicated line and makes the test pass for me.