0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Tools/idle/testcode.py

32 lines
233 B
Python
Raw Normal View History

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