[issue15284] Handle ipv6 not being enabled in test_socket

2012-07-08 Thread Brian Brazil
Changes by Brian Brazil : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue15284] Handle ipv6 not being enabled in test_socket

2012-07-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset b71dc2e9e00d by Ross Lagerwall in branch 'default': #15284: Skip {send,recv}msg tests with disabled IPv6 http://hg.python.org/cpython/rev/b71dc2e9e00d -- nosy: +python-dev ___ Python tracker

[issue15284] Handle ipv6 not being enabled in test_socket

2012-07-07 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review type: -> behavior versions: +Python 3.3 -Python 3.4 ___ Python tracker ___ ___

[issue15284] Handle ipv6 not being enabled in test_socket

2012-07-07 Thread Brian Brazil
New submission from Brian Brazil : If ipv6 is compiled in but disabled in the kernel then test_socket attempts to bind to ports and gets lots of stack traces. The attached patch skips the relevant tests. -- components: Tests files: ipv6-disabled-test-socket.patch keywords: patch messag