摘要:
<Thread(Thread-1, started 8568)>尝试第1次连接<Thread(Thread-1, started 8568)>尝试第2次连接<Thread(Thread-2, started 9144)>尝试第1次连接正在检查连接<Thread(Thread-1, started 8 阅读全文
摘要:
from threading import Thread import threading import time def say(name): time.sleep(5) print('%s say hello'%name) if __name__=='__main__': t=Thread(target=say,args=('wes',)) t.start()... 阅读全文
摘要:
Threads share the address space of the process that created it; processes have their own address space.1.线程共享创建它的进程的地址空间,进程,子进程有独立的地址空间 Threads have direct access to the data segment of its process; ... 阅读全文
摘要:
4200 get https://www.baidu.com9392 get https://www.python.org11912 get https://www.openstack.org4200 get https://help.github.com/11828 parse https://w 阅读全文