摘要: 版本一: #!/usr/bin/env python # -*- coding:utf-8 -*- import Queue import threading class ThreadPool(object): def __init__(self, max_num=20): self.queue = Queue.Queue(max_num) for ... 阅读全文
posted @ 2016-06-20 16:27 tina.py 阅读(261) 评论(0) 推荐(0) 编辑