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 - sendall timeout is no longer cleared for every byte #3

Open jbbjarnason opened 2 years ago

jbbjarnason commented 2 years ago

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

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. (Contributed by Victor Stinner in bpo-23853.)

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