summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-02 09:49:42 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-04-02 09:49:42 (GMT)
commit708d9ba5a228de83267e9ecc57f4fde90c326b84 (patch)
treee74b69c7871a4be55f151322e2de01cfbaf62c04 /Doc/whatsnew/3.5.rst
parent35bee932e4279a954b9218c3f85cb6be439887dc (diff)
downloadcpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.zip
cpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.tar.gz
cpython-708d9ba5a228de83267e9ecc57f4fde90c326b84.tar.bz2
Issue #23618: Document EINTR changes in socket documentation
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 4c272e6..adf770d 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -640,6 +640,17 @@ Changes in the Python API
- :func:`os.read`, :func:`os.write`
- :func:`select.select`, :func:`select.poll.poll`, :func:`select.epoll.poll`,
:func:`select.kqueue.control`, :func:`select.devpoll.poll`
+ - :func:`socket.socket` methods:
+
+ * :meth:`~socket.socket.accept`
+ * :meth:`~socket.socket.recv`
+ * :meth:`~socket.socket.recvfrom`
+ * :meth:`~socket.socket.recvmsg`
+ * :meth:`~socket.socket.send`
+ * :meth:`~socket.socket.sendall`
+ * :meth:`~socket.socket.sendmsg`
+ * :meth:`~socket.socket.sendto`
+
- :func:`signal.sigtimedwait`, :func:`signal.sigwaitinfo`
- :func:`time.sleep`