ECE595 / micropython

MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
https://micropython.org
Other
0 stars 1 forks source link

socket - listen backlog with default arg #4

Open jbbjarnason opened 2 years ago

jbbjarnason commented 2 years ago

https://docs.python.org/3/whatsnew/3.5.html#socket

The backlog argument of the socket.listen() method is now optional. By default it is set to SOMAXCONN or to 128, whichever is less. (Contributed by Charles-François Natali in bpo-21455.)

https://github.com/micropython/micropython/blob/master/docs/differences/python_35.rst https://github.com/micropython/micropython/issues/1329