[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1018 ___ Python tracker ___ ___

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-27 Thread Berker Peksag
Berker Peksag added the comment: test_sock_connect_sock_write_race failure is being discussed in issue 28283. Closing this again. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 06efc625578a by Victor Stinner in branch '3.5': test_asynico: fix test_sock_connect_sock_write_race() https://hg.python.org/cpython/rev/06efc625578a -- ___ Python tracker

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-18 Thread Berker Peksag
Berker Peksag added the comment: For some reason, some tests fail randomly on FreeBSD buildbots. See also issue27784. I'm planning to apply the attached patch. -- keywords: +patch nosy: +koobs Added file: http://bugs.python.org/file44736/issue28176_skip_tests.diff

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8417873f2eac by Berker Peksag in branch '3.5': Issue #28176: Increase timeout for test_sock_connect_sock_write_race https://hg.python.org/cpython/rev/8417873f2eac New changeset b5a08d5db05b by Berker Peksag in branch '3.6': Issue #28176: Merge from

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-17 Thread Berker Peksag
Berker Peksag added the comment: Would increasing timeout to 10.0 be sufficient? Should we wrap the test with @support.reap_threads? -- nosy: +berker.peksag status: pending -> open versions: +Python 3.5, Python 3.7 ___ Python tracker

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-16 Thread STINNER Victor
STINNER Victor added the comment: The timeout of 3 seconds seem to be too short for some buildbots like "AMD64 FreeBSD CURRENT Non-Debug 3.x". http://buildbot.python.org/all/builders/AMD64%20FreeBSD%20CURRENT%20Non-Debug%203.x/builds/295/steps/test/logs/stdio

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-15 Thread Berker Peksag
Changes by Berker Peksag : -- status: open -> closed ___ Python tracker ___ ___

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8550ab528a31 by Yury Selivanov in branch '3.5': Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. https://hg.python.org/cpython/rev/8550ab528a31 New changeset 3d8ba65a0054 by Yury Selivanov in branch '3.6': Merge 3.5 (issue

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-15 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed ___ Python tracker ___ ___

[issue28176] Fix callbacks race in asyncio.SelectorLoop.sock_connect

2016-09-15 Thread Yury Selivanov
New submission from Yury Selivanov: Proxy issue for https://github.com/python/asyncio/pull/366 -- assignee: yselivanov components: asyncio messages: 276628 nosy: gvanrossum, yselivanov priority: normal severity: normal stage: resolved status: open title: Fix callbacks race in