summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-04-04 23:08:59 +1000
committerDamien George <damien@micropython.org>2022-04-11 15:28:56 +1000
commit1daeeb2430c4a4e436ef59d881e5d877d140048a (patch)
tree2cca8ebad4ea046968b010460467b5198cd71de2
parentaab005c75b7d8b1f06a3294ce7a5d86edea24594 (diff)
downloadmicropython-1daeeb2430c4a4e436ef59d881e5d877d140048a.tar.gz
micropython-1daeeb2430c4a4e436ef59d881e5d877d140048a.zip
docs/differences: Update Python 3.5 diff, with optional listen backlog.
Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--docs/differences/python_35.rst2
1 files changed, 1 insertions, 1 deletions
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 <https://docs.python.org/3/whatsnew/3.5.html#ssl>`_ |