summaryrefslogtreecommitdiff
path: root/Lib/sched.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-11-12 15:37:53 +0000
committerGuido van Rossum <guido@python.org>1991-11-12 15:37:53 +0000
commit5b71bedc57b0b9243a475ff70381f864958e027f (patch)
tree7d0cbe9513e856555b2b2fa89603003e3e935550 /Lib/sched.py
parent129aaa370666fb639d390555e5aa114acfc39ec2 (diff)
downloadcpython-5b71bedc57b0b9243a475ff70381f864958e027f.tar.gz
Added a comment about a possible interface change.
Diffstat (limited to 'Lib/sched.py')
-rw-r--r--Lib/sched.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/sched.py b/Lib/sched.py
index 6abd251222..42d5ceedfe 100644
--- a/Lib/sched.py
+++ b/Lib/sched.py
@@ -23,6 +23,11 @@
# has another way to reference private data (besides global variables).
# Parameterless functions or methods cannot be used, however.
+# XXX The timefunc and delayfunc should have been defined as methods
+# XXX so you can define new kinds of schedulers using subclassing
+# XXX instead of having to define a module or class just to hold
+# XXX the global state of your particular time and delay functtions.
+
class scheduler():
#
# Initialize a new instance, passing the time and delay functions