Staging
v0.5.1
Revision d434e9f672961946e8c2cbe603f23dd275546bb2 authored by Barry Warsaw on 07 November 2008, 03:08:42 UTC, committed by Barry Warsaw on 07 November 2008, 03:08:42 UTC
1 parent f913ac7
Raw File
testcode.py
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()
back to top