cpython/Tools/idle/testcode.py

32 lines
233 B
Python
Raw Normal View History

1998-10-15 11:08:20 -03:00
import string
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def f():
a = 0
b = 1
c = 2
d = 3
e = 4
g()
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def g():
h()
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def h():
i()
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def i():
j()
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def j():
k()
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
def k():
l()
1998-10-10 15:58:15 -03:00
l = lambda: test()
def test():
1998-10-15 11:08:20 -03:00
string.capwords(1)
1998-10-10 15:58:15 -03:00
1998-10-15 11:08:20 -03:00
f()