diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-28 20:33:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 20:33:20 (GMT) |
commit | ac577d7d0bd27a69921ced14c09172235ceebab5 (patch) | |
tree | 0d8e39b6dbab0cd260764fa8acaf0390a8c509b6 /Misc | |
parent | 4d193bcc2560b824389e4d98d9d8b9b34e33dbaf (diff) | |
download | cpython-ac577d7d0bd27a69921ced14c09172235ceebab5.zip cpython-ac577d7d0bd27a69921ced14c09172235ceebab5.tar.gz cpython-ac577d7d0bd27a69921ced14c09172235ceebab5.tar.bz2 |
bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-28-15-27-10.bpo-32154.kDox7L.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-28-15-27-10.bpo-32154.kDox7L.rst b/Misc/NEWS.d/next/Library/2017-11-28-15-27-10.bpo-32154.kDox7L.rst new file mode 100644 index 0000000..67c6306 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-28-15-27-10.bpo-32154.kDox7L.rst @@ -0,0 +1,5 @@ +The ``asyncio.windows_utils.socketpair()`` function has been removed: use +directly :func:`socket.socketpair` which is available on all platforms since +Python 3.5 (before, it wasn't available on Windows). +``asyncio.windows_utils.socketpair()`` was just an alias to +``socket.socketpair`` on Python 3.5 and newer. |