摘要: ``` import os from threading import Thread # abstract_class class InputData(object): def read(self): raise NotImplementedError # abstract_class class Worker(object): def map(self): ... 阅读全文
posted @ 2018-03-26 20:47 lilied 阅读(155) 评论(0) 推荐(0) 编辑