Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 将socket.setdefaulttimeout(X)超时设置为X秒。我在主线程中有两个线程(一个主线程和另一个线程)我希望套接字超时为5秒,但对于线程我希望它为0.5秒。
socket.setdefaulttimeout(X)
X
5
0.5
每当这些线程中的任何一个更改超时时,它都会影响整个程序的超时,有没有办法为 python 中的不同线程设置不同的套接字超时?