标签: python python-2.7 multiprocessing
我正在使用python多处理队列。队列在主进程中创建,子进程从中获取。但是,在发送SIGINT之前,主进程中的所有数据都不会传递到队列。
log_q = Queue()
while True: msg = log_q.get() # log the msg