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 kbr
Recipients asvetlov, kbr, yselivanov
Date 2020-03-22.09:59:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584871182.68.0.304558218275.issue40040@roundup.psfhosted.org>
In-reply-to
Content
on Windows 10 with Python 3.8.2 and Python 3.9.0a4, the ProactorEventLoop raises "OSError: [WinError 87] The parameter is incorrect" when recvfrom on an AF_INET6 socket returns data:


DEBUG:asyncio:Using proactor: IocpProactor
INFO:asyncio:Datagram endpoint local_addr=('::', 11111) remote_addr=None created: (<_ProactorDatagramTransport fd=288>, <__main__.Prot object at 0x0000028739A09580>)
ERROR:root:error_received
Traceback (most recent call last):
  File "...\Python\Python39\lib\asyncio\proactor_events.py", line 548, in _loop_reading
    res = fut.result()
  File "...\Python\Python39\lib\asyncio\windows_events.py", line 808, in _poll
    value = callback(transferred, key, ov)
  File "...\Python\Python39\lib\asyncio\windows_events.py", line 496, in finish_recv
    return ov.getresult()
OSError: [WinError 87] The parameter is incorrect


The same code works without issues on python 3.7 or when using WindowsSelectorEventLoopPolicy.
History
Date User Action Args
2020-03-22 09:59:42kbrsetrecipients: + kbr, asvetlov, yselivanov
2020-03-22 09:59:42kbrsetmessageid: <1584871182.68.0.304558218275.issue40040@roundup.psfhosted.org>
2020-03-22 09:59:42kbrlinkissue40040 messages
2020-03-22 09:59:41kbrcreate