diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-06 12:55:40 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-06 12:55:40 (GMT) |
commit | ae8a68f40cd56aa952520260970ebd5b9d3fb95c (patch) | |
tree | e1d470857f4a2fb83fe4fae48509f0babb93852c /Mac/Lib/test/tctl.py | |
parent | c7cfb9555974e2e3789a629f1b7509eaa73ee2c6 (diff) | |
download | cpython-ae8a68f40cd56aa952520260970ebd5b9d3fb95c.zip cpython-ae8a68f40cd56aa952520260970ebd5b9d3fb95c.tar.gz cpython-ae8a68f40cd56aa952520260970ebd5b9d3fb95c.tar.bz2 |
Trying again to check it in. Changes to:
- Use Universal Headers as input
- Change addpack calls to not depend on Guido's disklayout
- Checkge testprograms to use new names for some functions
Diffstat (limited to 'Mac/Lib/test/tctl.py')
-rw-r--r-- | Mac/Lib/test/tctl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/Lib/test/tctl.py b/Mac/Lib/test/tctl.py index 862eeb5..a255c56 100644 --- a/Mac/Lib/test/tctl.py +++ b/Mac/Lib/test/tctl.py @@ -5,6 +5,7 @@ from Ctl import * from Win import * from Evt import * import time +import sys def main(): r = (40, 40, 400, 300) @@ -12,6 +13,8 @@ def main(): w.DrawGrowIcon() r = (40, 40, 100, 60) c = NewControl(w, r, "SPAM!", 1, 0, 0, 1, 0, 0) + print 'Ok, try it...' + sys.exit(1) # So we can see what happens... main() |