Coverage for src/threadful/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-21 16:49 +0200

1""" 

2This file exposes the most important functions of this library. 

3""" 

4 

5from .bonus import animate 

6from .core import ( 

7 ThreadWithReturn, 

8 join_all_or_raise, 

9 join_all_results, 

10 join_all_unwrap, 

11 thread, 

12) 

13 

14threadify = thread 

15 

16__all__ = [ 

17 "ThreadWithReturn", 

18 "animate", 

19 "join_all_or_raise", 

20 "join_all_results", 

21 "join_all_unwrap", 

22 "thread", 

23 "threadify", 

24]