From 1daeeb2430c4a4e436ef59d881e5d877d140048a Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 4 Apr 2022 23:08:59 +1000 Subject: [PATCH] docs/differences: Update Python 3.5 diff, with optional listen backlog. Signed-off-by: Damien George --- docs/differences/python_35.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/differences/python_35.rst b/docs/differences/python_35.rst index 06cfbfc03c..94b10b5837 100644 --- a/docs/differences/python_35.rst +++ b/docs/differences/python_35.rst @@ -140,7 +140,7 @@ Changes to built-in modules: | The *socket.sendall()* method no longer resets the socket timeout every time bytes are received or sent. | | | The socket timeout is now the maximum total duration to send all data. | | +-----------------------------------------------------------------------------------------------------------+---------------+ - | The backlog argument of the *socket.listen()* method is now optional. By default it is set to SOMAXCONN or| | + | The backlog argument of the *socket.listen()* method is now optional. By default it is set to SOMAXCONN or| Completed | | to 128, whichever is less. | | +-----------------------------------------------------------------------------------------------------------+---------------+ | `ssl `_ |