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

4 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-02-29 21:18 +0100

1""" 

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

3""" 

4 

5from .bonus import animate 

6from .core import ThreadWithReturn, thread 

7 

8threadify = thread 

9 

10__all__ = [ 

11 "ThreadWithReturn", 

12 "thread", 

13 "threadify", 

14 "animate", 

15]