This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Steve.P, ned.deily
Date 2014-10-14.23:56:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413330984.26.0.591425887222.issue22639@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not sure what you are trying to do but there is no test module named test_bad_address in the standard library, which is why you get that error.  Doing a quick search of Lib/test shows three different cases of test_bad_address: in the test_ipaddress, test_urllib2_localnet, and test_urllibnet modules.  If you want to just run those tests, you'd need to specify the module names.  Plus two of them require network access so you'll need to enable the "network" test resource.  Try something like:

./python -m test -v -u network test_ipaddress test_urllib2_localnet test_urllibnet
History
Date User Action Args
2014-10-14 23:56:24ned.deilysetrecipients: + ned.deily, Steve.P
2014-10-14 23:56:24ned.deilysetmessageid: <1413330984.26.0.591425887222.issue22639@psf.upfronthosting.co.za>
2014-10-14 23:56:24ned.deilylinkissue22639 messages
2014-10-14 23:56:24ned.deilycreate