summaryrefslogtreecommitdiffstats
path: root/Mac/Unsupported/twit/twittest.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-05-10 12:17:03 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-05-10 12:17:03 (GMT)
commitd454b578e29e073250936948df5044e41fada772 (patch)
tree379ff07879dddaf262539ee01892c87a865494be /Mac/Unsupported/twit/twittest.py
parent95bf9390a488004f66db1eccaa049203ef8ab5b3 (diff)
downloadcpython-d454b578e29e073250936948df5044e41fada772.zip
cpython-d454b578e29e073250936948df5044e41fada772.tar.gz
cpython-d454b578e29e073250936948df5044e41fada772.tar.bz2
Has been dead so long that there's no use keeping it in the active bit of the repository.
Diffstat (limited to 'Mac/Unsupported/twit/twittest.py')
-rw-r--r--Mac/Unsupported/twit/twittest.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/Mac/Unsupported/twit/twittest.py b/Mac/Unsupported/twit/twittest.py
deleted file mode 100644
index 10d3693..0000000
--- a/Mac/Unsupported/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)
-