Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8b050afad8739d19e8f94403cb62cf198b8d583b authored by cvs2svn on 17 March 2005, 03:06:56 UTC
This commit was manufactured by cvs2svn to create tag 'r241c2'.
Tip revision: 8b050af
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