aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Twisted/py3/twisted/_threads/__init__.py
blob: 13c7c7dda5adf24991590328609f9cbba8aea31e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- test-case-name: twisted.test.test_paths -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Twisted integration with operating system threads.
"""


from ._ithreads import AlreadyQuit, IWorker
from ._memory import createMemoryWorker
from ._pool import pool
from ._team import Team
from ._threadworker import LockWorker, ThreadWorker

__all__ = [
    "ThreadWorker",
    "LockWorker",
    "IWorker",
    "AlreadyQuit",
    "Team",
    "createMemoryWorker",
    "pool",
]