|
15 | 15 | sync_perform, |
16 | 16 | sync_performer) |
17 | 17 | from ._intents import ( |
18 | | - Delay, ParallelEffects, parallel, parallel_all_errors, |
19 | | - Constant, Error, FirstError, Func, |
| 18 | + Delay, perform_delay_with_sleep, |
| 19 | + ParallelEffects, parallel, parallel_all_errors, FirstError, |
| 20 | + Constant, Error, Func, |
20 | 21 | base_dispatcher) |
21 | 22 | from ._dispatcher import ComposedDispatcher, TypeDispatcher |
22 | 23 |
|
23 | 24 |
|
24 | 25 | __all__ = [ |
25 | | - "Effect", "perform", "NoPerformerFoundError", |
26 | | - "NotSynchronousError", "sync_perform", "sync_performer", |
27 | | - "Delay", "ParallelEffects", "parallel", "parallel_all_errors", |
28 | | - "Constant", "Error", "FirstError", "Func", |
| 26 | + # Order here affects the order that these things show up in the API docs. |
| 27 | + "Effect", "sync_perform", "sync_performer", |
29 | 28 | "base_dispatcher", |
30 | 29 | "TypeDispatcher", "ComposedDispatcher", |
| 30 | + "Delay", "perform_delay_with_sleep", |
| 31 | + "ParallelEffects", "parallel", "parallel_all_errors", |
| 32 | + "Constant", "Error", "Func", |
31 | 33 | "catch", "raise_", |
| 34 | + "NoPerformerFoundError", "NotSynchronousError", "perform", |
| 35 | + "FirstError", |
32 | 36 | ] |
0 commit comments