标签:python 编程语言
该模块支持Windows、Linux、SGI IRIX、Solaris 2.x、以及任何实现了POSIX线程的系统。
import _thread a_lock = _thread.allocate_lock() with a_lock: print("a_lock is locked while this executes")
Python多线程4:_thread
原文地址:http://blog.csdn.net/tomato__/article/details/46646237