From 0e71dc1106575f26cb55e55daec7c96955fffafa Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 14 Dec 1992 14:10:36 +0000 Subject: Adapted to modern times and fixed a bug (id --> my_id) --- Demo/stdwin/TestSched.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Demo/stdwin/TestSched.py b/Demo/stdwin/TestSched.py index 7760cc0..f6bbe23 100755 --- a/Demo/stdwin/TestSched.py +++ b/Demo/stdwin/TestSched.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # TestSched @@ -8,7 +8,7 @@ import WindowSched from Buttons import PushButton def my_ringer(child): - child.id = None + child.my_id = None stdwin.fleep() def my_hook(child): @@ -16,7 +16,7 @@ def my_hook(child): if child.my_id: WindowSched.cancel(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): from CSplit import CSplit -- cgit v0.12