@toc
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from Queue import Queue
import contextlib
import threading
WorkerStop = object()
class ThreadPool:
workers = 0
@toc
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from Queue import Queue
import contextlib
import threading
WorkerStop = object()
class ThreadPool:
workers = 0