[issue32662] Implement Server.serve_forever and corresponding APIs

2018-05-29 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-26 Thread Yury Selivanov
Yury Selivanov added the comment: I think these failures were on the previous version of the test; i've fixed it last night and it shouldn't timeout this way anymore. -- ___ Python tracker __

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-26 Thread STINNER Victor
STINNER Victor added the comment: Just to be complete, the test also fails on x86 Gentoo Non-Debug with X 3.x: http://buildbot.python.org/all/#/builders/99/builds/564 ... test_start_server_1 (test.test_asyncio.test_server.SelectorStartServerTests) ... Exception in thread test-client: Traceback

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-26 Thread STINNER Victor
STINNER Victor added the comment: The test fails differently on s390x SLES 3.x: http://buildbot.python.org/all/#/builders/16/builds/576 ... test_force_close (test.test_asyncio.test_selector_events.SelectorTransportTests) ... ok test_set_nodelay (test.test_asyncio.test_selector_events.TestSelec

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-26 Thread STINNER Victor
STINNER Victor added the comment: test_asyncio.test_start_server_1() hangs on "s390x Debian 3.x" buildbot: http://buildbot.python.org/all/#builders/13/builds/579 test_set_nodelay (test.test_asyncio.test_selector_events.TestSelectorUtils) ... ok test_start_server_1 (test.test_asyncio.test_serve

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-25 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 4112c5b97d9c1c7b034653d0e017ffa894a45c74 by Yury Selivanov in branch 'master': bpo-32662: Try making test_asyncio.test_server more reliable (#5338) https://github.com/python/cpython/commit/4112c5b97d9c1c7b034653d0e017ffa894a45c74 -- __

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-25 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +5185 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-25 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-25 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset c9070d03f5169ad6e171e641b7fa8feab18bf229 by Yury Selivanov in branch 'master': bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312) https://github.com/python/cpython/commit/c9070d03f5169ad6e171e641b7fa8feab18bf229

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-24 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +5158 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue32662] Implement Server.serve_forever and corresponding APIs

2018-01-24 Thread Yury Selivanov
New submission from Yury Selivanov : As discussed, we want to make Server objects more usable in async/await code and more compatible with asyncio.run. This is also needed to handle a use case when two or more servers are created and need to start listening at the same time. We propose to: 1