New submission from Nicolas SURRIBAS :
Hello,
I bumped into this strange behavior several times when using os.scandir on
mounted NFS shares. I'm using Python 3.9.1
>>> path = b'/mnt/nfs_share/sdb1/System Volume Information/'
>>> l = list(os.s
New submission from Nicolas SURRIBAS :
When passing to socket.create_connection a timeout option above (approximately)
127 seconds, the timeout is not respected.
Code to reproduce the issue :
import socket
from time import monotonic
print(socket.getdefaulttimeout())
start = monotonic()
try