source: python/trunk/Lib/idlelib/testcode.py@ 610

Last change on this file since 610 was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 233 bytes
Line 
1import string
2
3def f():
4 a = 0
5 b = 1
6 c = 2
7 d = 3
8 e = 4
9 g()
10
11def g():
12 h()
13
14def h():
15 i()
16
17def i():
18 j()
19
20def j():
21 k()
22
23def k():
24 l()
25
26l = lambda: test()
27
28def test():
29 string.capwords(1)
30
31f()
Note: See TracBrowser for help on using the repository browser.