symbian-qemu-0.9.1-12/python-2.6.1/Lib/idlelib/testcode.py
author johnathan.white@2718R8BGH51
Sun, 25 Oct 2009 13:29:47 +0000
changeset 16 2dd1d22cb0f3
parent 1 2fb8b9db1c86
permissions -rw-r--r--
Add TextShell example application, enable display pointer, fix issue with abstract class in sounddriver

import string

def f():
    a = 0
    b = 1
    c = 2
    d = 3
    e = 4
    g()

def g():
    h()

def h():
    i()

def i():
    j()

def j():
    k()

def k():
    l()

l = lambda: test()

def test():
    string.capwords(1)

f()