diff options
Diffstat (limited to 'Lib/sched.py')
-rw-r--r-- | Lib/sched.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/sched.py b/Lib/sched.py index fc5bd56..ba5f33a 100644 --- a/Lib/sched.py +++ b/Lib/sched.py @@ -30,6 +30,8 @@ Parameterless functions or methods cannot be used, however. import bisect +__all__ = ["scheduler"] + class scheduler: def __init__(self, timefunc, delayfunc): """Initialize a new instance, passing the time and delay |