summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/twit/twittest.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-08-20 20:21:38 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-08-20 20:21:38 (GMT)
commit9ebf2d2ca4694ec38ae07fcb8e7b7a115f5bf977 (patch)
treec00da186177ef0b9b6e230ffbe0998ecba1e8d40 /Mac/Tools/twit/twittest.py
parent51f357049b6a83167e46af5e07e8ce1ea1be7b2f (diff)
downloadcpython-9ebf2d2ca4694ec38ae07fcb8e7b7a115f5bf977.zip
cpython-9ebf2d2ca4694ec38ae07fcb8e7b7a115f5bf977.tar.gz
cpython-9ebf2d2ca4694ec38ae07fcb8e7b7a115f5bf977.tar.bz2
Moved to unsupported: it never lived up to its expectancies, and for the Mac all the functionality is available in the IDE.
Diffstat (limited to 'Mac/Tools/twit/twittest.py')
-rw-r--r--Mac/Tools/twit/twittest.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/Mac/Tools/twit/twittest.py b/Mac/Tools/twit/twittest.py
deleted file mode 100644
index 10d3693..0000000
--- a/Mac/Tools/twit/twittest.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# Test program
-
-def foo(arg1, arg2):
- bar(arg1+arg2)
- bar(arg1-arg2)
- foo(arg1+1, arg2-1)
-
-def bar(arg):
- rv = 10/arg
- print rv
-
-foo(0,10)
-