Message278921
| 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()) |
|