[issue20483] Missing network resource checks in test_urllib2 & test_smtplib

2016-09-10 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> works for me stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue20483] Missing network resource checks in test_urllib2 test_smtplib

2014-05-18 Thread Berker Peksag
Berker Peksag added the comment: I couldn't reproduce it either. I also tried related urllib and urllib2 tests: - test_urllib (passed) - test_urllibnet (skipped - Use of the 'network' resource not enabled) - test_urllib_response (passed) - test_urllib2net (skipped - Use of the 'network' resource

[issue20483] Missing network resource checks in test_urllib2 test_smtplib

2014-03-10 Thread Nadja Deininger
Nadja Deininger added the comment: I tried to reproduce this by disabling my network connection and running these tests, but they worked for me. -- nosy: +ndeininger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20483

[issue20483] Missing network resource checks in test_urllib2 test_smtplib

2014-02-01 Thread Nick Coghlan
New submission from Nick Coghlan: These two tests appear to rely on DNS lookups or other network access that isn't guarded by the network resource (my internet dropped out and these two tests failed, but they work correctly now the internet connection is back up). -- components: Tests