mirror of
https://github.com/python/cpython.git
synced 2025-09-14 12:46:49 +00:00
19 lines
199 B
Python
19 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()
|