This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author yselivanov
Recipients methane, ned.deily, serhiy.storchaka, vstinner, yselivanov
Date 2016-10-18.19:18:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476818317.21.0.812477817972.issue28471@psf.upfronthosting.co.za>
In-reply-to
Content
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())
History
Date User Action Args
2016-10-18 19:18:37yselivanovsetrecipients: + yselivanov, vstinner, ned.deily, methane, serhiy.storchaka
2016-10-18 19:18:37yselivanovsetmessageid: <1476818317.21.0.812477817972.issue28471@psf.upfronthosting.co.za>
2016-10-18 19:18:37yselivanovlinkissue28471 messages
2016-10-18 19:18:37yselivanovcreate