[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Martin Panter
Martin Panter added the comment: Yep, working well. Thanks Guido & Ivan. -- stage: commit review -> resolved ___ Python tracker ___

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Guido van Rossum
Guido van Rossum added the comment: Martin can you verify that this worked? -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c3363f684a2d by Guido van Rossum in branch '3.5': Issue #28482: Skip a few test_typing tests if asyncio unavailable https://hg.python.org/cpython/rev/c3363f684a2d New changeset 8f3b4779afaf by Guido van Rossum in branch '3.6': Issue #28482: Skip a

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Martin, I have opened a PR with your patch at python/typing https://github.com/python/typing/pull/304 -- ___ Python tracker

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Martin Panter
Martin Panter added the comment: I will this to Git Hub when I get a chance to get set up, if that helps though :) -- ___ Python tracker ___

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Guido van Rossum
Guido van Rossum added the comment: Ivan, if you want to apply it upstream be my guest! -- ___ Python tracker ___

[issue28482] test_typing fails if asyncio unavailable

2016-10-21 Thread Ivan Levkivskyi
Changes by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___

[issue28482] test_typing fails if asyncio unavailable

2016-10-20 Thread Guido van Rossum
Guido van Rossum added the comment: Can you submit this as a PR upstream, to github.com/python/typing? -- ___ Python tracker ___

[issue28482] test_typing fails if asyncio unavailable

2016-10-19 Thread Martin Panter
New submission from Martin Panter: If you compile with “configure --without-threads”, various tests are already skipped because they rely on multithreading. However test_typing does not seem to handle this. It tries to import “asyncio”, which seems to depend on multithreading. I presume it is