New submission from Yury Selivanov: The following Python program causes a segfault in Python 3.6b2:
import socket import asyncio loop = asyncio.get_event_loop() sock = socket.socket() sock.close() async def client(): reader, writer = await asyncio.open_connection( sock=sock, loop=loop) async def runner(): await client() loop.run_until_complete(runner()) ---------- components: Interpreter Core messages: 278921 nosy: haypo, inada.naoki, ned.deily, serhiy.storchaka, yselivanov priority: release blocker severity: normal status: open title: Python 3.6b2 crashes with "Python memory allocator called without holding the GIL" versions: Python 3.6 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28471> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com