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 /Doc/whatsnew/3.7.rst | |
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 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 4973080..e4600fe 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -686,6 +686,12 @@ Changes in Python behavior Changes in the Python API ------------------------- +* 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. + * :mod:`asyncio`: The module doesn't export :mod:`selectors` and :mod:`_overlapped` modules as ``asyncio.selectors`` and ``asyncio._overlapped``. Replace ``from asyncio import selectors`` with |