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

20 lines
199 B
Python
Raw Normal View History

1998-10-10 20:58:15 +02:00
def f(): a = b = c = d = e = 0; g()
def g(): h()
def h(): i()
def i(): j()
def j(): k()
def k(): l()
l = lambda: test()
def test():
exec "import string; string.capwords(None)" in {}
k()