repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Ditched '_find_SET()', since it was a no-value-added wrapper around
[python/dscho.git]
/
Mac
/
Tools
/
twit
/
twittest.py
blob
10d36934576d3e8a5cd9a3d356811ddb712ca2ff
1
# Test program
2
3
def
foo
(
arg1
,
arg2
):
4
bar
(
arg1
+
arg2
)
5
bar
(
arg1
-
arg2
)
6
foo
(
arg1
+
1
,
arg2
-
1
)
7
8
def
bar
(
arg
):
9
rv
=
10
/
arg
10
print
rv
11
12
foo
(
0
,
10
)
13