22 lines
596 B
Python
22 lines
596 B
Python
__author__ = 'Matteo Cafasso'
|
|
__version__ = '5.0.3'
|
|
__license__ = 'LGPL'
|
|
|
|
|
|
__all__ = ['waitforthreads',
|
|
'waitforqueues',
|
|
'synchronized',
|
|
'sighandler',
|
|
'ProcessFuture',
|
|
'MapFuture',
|
|
'ProcessMapFuture',
|
|
'ProcessExpired',
|
|
'ProcessPool',
|
|
'ThreadPool']
|
|
|
|
|
|
from pebble.decorators import synchronized, sighandler
|
|
from pebble.common import ProcessExpired, ProcessFuture
|
|
from pebble.functions import waitforqueues, waitforthreads
|
|
from pebble.pool import ThreadPool, ProcessPool, MapFuture, ProcessMapFuture
|