mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
20 lines
199 B
Python
20 lines
199 B
Python
|
|
||
|
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()
|