Coverage for src/threadful/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-12-04 18:42 +0100
« prev ^ index » next coverage.py v7.4.3, created at 2024-12-04 18:42 +0100
1"""
2This file exposes the most important functions of this library.
3"""
5from .bonus import animate
6from .core import ThreadWithReturn, join_all_or_raise, join_all_results, join_all_unwrap, thread
8threadify = thread
10__all__ = [
11 "ThreadWithReturn",
12 "thread",
13 "threadify",
14 "animate",
15 "join_all_unwrap",
16 "join_all_results",
17 "join_all_or_raise",
18]