https://github.com/python/cpython/commit/0f7e6d78ea02781b3c6466218d422c99d73a4f62 commit: 0f7e6d78ea02781b3c6466218d422c99d73a4f62 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: gpshead <[email protected]> date: 2025-02-06T09:45:28-08:00 summary:
[3.13] Remove an inaccurate note from `socket.recv` (GH-129733) (#129734) Remove an inaccurate note from `socket.recv` (GH-129733) Remove an inaccurate note from socket.recv. (cherry picked from commit ded54c3baa57f6727be809f13633b393241c164a) Co-authored-by: Gregory P. Smith <[email protected]> files: M Doc/library/socket.rst diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 9ae0185588f493..12f95b839a948e 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -1651,11 +1651,6 @@ to sockets. See the Unix manual page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults to zero. - .. note:: - - For best match with hardware and network realities, the value of *bufsize* - should be a relatively small power of 2, for example, 4096. - .. versionchanged:: 3.5 If the system call is interrupted and the signal handler does not raise an exception, the method now retries the system call instead of raising _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
