12 2018 档案

摘要:将错误写入 不同的文件夹 阅读全文
posted @ 2018-12-03 13:58 7411 阅读(83) 评论(0) 推荐(0)
摘要:#!/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 i in ... 阅读全文
posted @ 2018-12-03 13:06 7411 阅读(64) 评论(0) 推荐(0)