]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)
authorKjell Braden <afflux@pentabarf.de>
Mon, 18 May 2020 06:21:30 +0000 (08:21 +0200)
committerGitHub <noreply@github.com>
Mon, 18 May 2020 06:21:30 +0000 (23:21 -0700)
commit442634c42fcaf31c636f693951a97734042c3e7b
treedf3dc97f33eea99bf18898e037c363f0e8a04b06
parentda742ba826721da84140abc785856d4ccc2d787f
bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)

Ifdef is not necessary, as AF_INET6 is supported from Windows Vista, and other code in overlapped.c uses AF_INET6 and is not ifdef'd.
Change the raised exception so users are not fooled to think it comes from Windows API.

Automerge-Triggered-By: @njsmith
Lib/test/test_asyncio/test_events.py
Misc/NEWS.d/next/Windows/2020-03-23-19-07-55.bpo-39148.W1YJEb.rst [new file with mode: 0644]
Modules/overlapped.c