[issue37199] Test suite fails when Ipv6 is unavailable

2019-09-13 Thread miss-islington
miss-islington added the comment: New changeset 83c21fdc36070f9fa3eb3b68181630e2cc6480fe by Miss Islington (bot) in branch '3.8': bpo-37199: Replace the early returns added in c2cda63. (GH-14535) https://github.com/python/cpython/commit/83c21fdc36070f9fa3eb3b68181630e2cc6480fe --

[issue37199] Test suite fails when Ipv6 is unavailable

2019-09-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +15727 pull_request: https://github.com/python/cpython/pull/16112 ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-09-13 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 81319a81b2a3f42fe1047c2e6f5fd958faab6cdb by Benjamin Peterson (Zackery Spytz) in branch 'master': bpo-37199: Replace the early returns added in c2cda63. (GH-14535)

[issue37199] Test suite fails when Ipv6 is unavailable

2019-07-01 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +14348 pull_request: https://github.com/python/cpython/pull/14535 ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-07-01 Thread STINNER Victor
STINNER Victor added the comment: > Do you think that I should backport manually? Zackery Spytz: Can you please try to backport manually to 3.7? But I would prefer to wait until Christian's issue is addressed. -- ___ Python tracker

[issue37199] Test suite fails when Ipv6 is unavailable

2019-07-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Victor, backporting to 3.7 makes merge conflicts. Do you think that I should backport manually? -- ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-07-01 Thread STINNER Victor
STINNER Victor added the comment: Python 3.7 is still supported, if it's a bugfix, 3.7 should be fixed as well: https://devguide.python.org/#status-of-python-branches Christian Heimes asked for a change after the PR was merged:

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread miss-islington
miss-islington added the comment: New changeset c2684c6d62978e9ce8256c3c7744d0332a2abe4c by Miss Islington (bot) in branch '3.8': bpo-37199: Fix test failures when IPv6 is unavailable or disabled (GH-14480) https://github.com/python/cpython/commit/c2684c6d62978e9ce8256c3c7744d0332a2abe4c

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +14305 pull_request: https://github.com/python/cpython/pull/14486 ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset c2cda638d63b98f5cf9a8ef13e15aace2b7e3f0b by Andrew Svetlov (Zackery Spytz) in branch 'master': bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-30 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- components: +Tests nosy: +ZackerySpytz ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-29 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14297 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14480 ___ Python tracker ___

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-07 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37199] Test suite fails when Ipv6 is unavailable

2019-06-07 Thread N.P. Khelili
New submission from N.P. Khelili : The test suite does not handle an OS that does not have IPv6. When Linux kernel is started with argument: ipv6.disable=1 The test suite fails. ( See attached file ) 5 tests failed: test_asyncio test_imaplib test_importlib test_socket test_zipapp