[issue31250] test_asyncio leaks dangling threads

2017-09-13 Thread STINNER Victor
Changes by STINNER Victor : -- versions: +Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue31250] test_asyncio leaks dangling threads

2017-09-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset 5013a5ebc9978a58435036fa3860c465882c21da by Victor Stinner in branch '3.6': [3.6] bpo-31250: test_asyncio: fix dangling threads (#3517) https://github.com/python/cpython/commit/5013a5ebc9978a58435036fa3860c465882c21da -- ___

[issue31250] test_asyncio leaks dangling threads

2017-09-12 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue31250] test_asyncio leaks dangling threads

2017-09-12 Thread STINNER Victor
Changes by STINNER Victor : -- keywords: +patch pull_requests: +3512 stage: resolved -> patch review ___ Python tracker ___ ___ Pytho

[issue31250] test_asyncio leaks dangling threads

2017-09-01 Thread STINNER Victor
STINNER Victor added the comment: New changeset e8a533fbc734af6eeb389202ba6c6e9c2548027f by Victor Stinner in branch 'master': bpo-31250, test_asyncio: fix EventLoopTestsMixin.tearDown() (#3264) https://github.com/python/cpython/commit/e8a533fbc734af6eeb389202ba6c6e9c2548027f --

[issue31250] test_asyncio leaks dangling threads

2017-09-01 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +3308 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue31250] test_asyncio leaks dangling threads

2017-09-01 Thread STINNER Victor
STINNER Victor added the comment: Hum, EventLoopTestsMixin.tearDown() still has a bug. I reopen the issue. -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue31250] test_asyncio leaks dangling threads

2017-09-01 Thread STINNER Victor
STINNER Victor added the comment: I picked the safe option: only modify unit tests. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue31250] test_asyncio leaks dangling threads

2017-09-01 Thread STINNER Victor
STINNER Victor added the comment: New changeset 16432beadb8eba079c9786cc0c0eaacfd9fd2f7b by Victor Stinner in branch 'master': bpo-31250, test_asyncio: fix dangling threads (#3252) https://github.com/python/cpython/commit/16432beadb8eba079c9786cc0c0eaacfd9fd2f7b -- __

[issue31250] test_asyncio leaks dangling threads

2017-08-31 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +3296 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue31250] test_asyncio leaks dangling threads

2017-08-31 Thread STINNER Victor
STINNER Victor added the comment: I proposed PR 3252 to only fix unit tests, but not asyncio. An alternative is to modify BaseEventLoop.close() to replace executor.shutdown(wait=False) with executor.shutdown(wait=True), but it would change the behaviour. I'm not sure if we want to wait until a

[issue31250] test_asyncio leaks dangling threads

2017-08-21 Thread STINNER Victor
New submission from STINNER Victor: Using PR 3138 of bpo-31234, I noticed that test_asyncio leaks dangling threads. Tests which randomly leak threads: --- test.test_asyncio.test_base_events.BaseEventLoopWithSelectorTests.test_create_connection_no_inet_pton test.test_asyncio.test_base_events.Base