File: __init__.py

package info (click to toggle)
python-pebble 5.1.1-1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 436 kB
  • sloc: python: 5,491; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
__author__ = 'Matteo Cafasso'
__version__ = '5.1.1'
__license__ = 'LGPL'


__all__ = ['waitforthreads',
           'waitforqueues',
           'synchronized',
           'sighandler',
           'ProcessFuture',
           'MapFuture',
           'ProcessMapFuture',
           'ProcessExpired',
           'ProcessPool',
           'ThreadPool']


from pebble import concurrent, asynchronous
from pebble.decorators import synchronized, sighandler
from pebble.functions import waitforqueues, waitforthreads
from pebble.common import ProcessExpired, ProcessFuture, CONSTS
from pebble.pool import ThreadPool, ProcessPool, MapFuture, ProcessMapFuture