Commit ecb8ea9f authored by Guido van Rossum's avatar Guido van Rossum

Adapted to modern times and fixed a bug (id --> my_id)

parent 00a9bb46
#! /usr/local/python #! /usr/local/bin/python
# TestSched # TestSched
...@@ -8,7 +8,7 @@ import WindowSched ...@@ -8,7 +8,7 @@ import WindowSched
from Buttons import PushButton from Buttons import PushButton
def my_ringer(child): def my_ringer(child):
child.id = None child.my_id = None
stdwin.fleep() stdwin.fleep()
def my_hook(child): def my_hook(child):
...@@ -16,7 +16,7 @@ def my_hook(child): ...@@ -16,7 +16,7 @@ def my_hook(child):
if child.my_id: if child.my_id:
WindowSched.cancel(child.my_id) WindowSched.cancel(child.my_id)
child.my_id = \ child.my_id = \
WindowSched.enter(child.my_number*1000, 0, my_ringer, child) WindowSched.enter(child.my_number*1000, 0, my_ringer, (child,))
def main(n): def main(n):
from CSplit import CSplit from CSplit import CSplit
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment