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 sebastien.bourdeauducq
Recipients gvanrossum, sebastien.bourdeauducq, vstinner, yselivanov
Date 2016-07-12.17:55:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468346135.06.0.410333112523.issue27500@psf.upfronthosting.co.za>
In-reply-to
Content
The following code fails with "OSError: [WinError 10022] An invalid argument was supplied".

import asyncio
loop = asyncio.ProactorEventLoop()
asyncio.set_event_loop(loop)
loop.run_until_complete(asyncio.open_connection("::1", 4242))

This is a regression in 3.5.2. 3.5.1 does not have this bug. Connecting to 127.0.0.1 does not cause the problem.
History
Date User Action Args
2016-07-12 17:55:35sebastien.bourdeauducqsetrecipients: + sebastien.bourdeauducq, gvanrossum, vstinner, yselivanov
2016-07-12 17:55:35sebastien.bourdeauducqsetmessageid: <1468346135.06.0.410333112523.issue27500@psf.upfronthosting.co.za>
2016-07-12 17:55:35sebastien.bourdeauducqlinkissue27500 messages
2016-07-12 17:55:34sebastien.bourdeauducqcreate