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
Updated for 2.1a3
[python/dscho.git]
/
Lib
/
idlelib
/
testcode.py
blob
05eaa562cd1b233521de25781a7bfe2588e452cd
1
import
string
2
3
def
f
():
4
a
=
0
5
b
=
1
6
c
=
2
7
d
=
3
8
e
=
4
9
g
()
10
11
def
g
():
12
h
()
13
14
def
h
():
15
i
()
16
17
def
i
():
18
j
()
19
20
def
j
():
21
k
()
22
23
def
k
():
24
l
()
25
26
l
=
lambda
:
test
()
27
28
def
test
():
29
string
.
capwords
(
1
)
30
31
f
()