Re: [python-tulip] No tracebacks when running from run_until_complete

2016-12-16 Thread Yury Selivanov
Hi, Can you try Python 3.6 rc1? This is likely related to http://bugs.python.org/issue28843 Yury > On Dec 16, 2016, at 12:44 PM, Carlo Pires wrote: > > Hi, > > I'm starting with asyncio and python3.6 (using Python 3.6.0b4). > > See this snippet: > > import asyncio

Re: [python-tulip] No tracebacks when running from run_until_complete

2016-12-16 Thread Yury Selivanov
Hm. I’m not sure what’s going on here. Please file a bug on bugs.python.org. Yury > On Dec 16, 2016, at 1:19 PM, Carlo Pires wrote: > > Compiling py36 rc1 gave me this error (running tests): > > Fatal Python error: Segmentation fault > > Current thread 0x2afd4622c380

[python-tulip] No tracebacks when running from run_until_complete

2016-12-16 Thread Carlo Pires
Hi, I'm starting with asyncio and python3.6 (using Python 3.6.0b4). See this snippet: import asyncio async def fa(): return 1/0 async def fb(): return await fa() async def fc(): return await fb() async def test(): return await fc()