mirror of
https://github.com/python/cpython.git
synced 2025-09-13 12:17:24 +00:00
Cosmetic change
This commit is contained in:
parent
0e0d3e7c2b
commit
99d3c48772
1 changed files with 20 additions and 8 deletions
|
@ -1,19 +1,31 @@
|
|||
import string
|
||||
|
||||
def f(): a = b = c = d = e = 0; g()
|
||||
def f():
|
||||
a = 0
|
||||
b = 1
|
||||
c = 2
|
||||
d = 3
|
||||
e = 4
|
||||
g()
|
||||
|
||||
def g(): h()
|
||||
def g():
|
||||
h()
|
||||
|
||||
def h(): i()
|
||||
def h():
|
||||
i()
|
||||
|
||||
def i(): j()
|
||||
def i():
|
||||
j()
|
||||
|
||||
def j(): k()
|
||||
def j():
|
||||
k()
|
||||
|
||||
def k(): l()
|
||||
def k():
|
||||
l()
|
||||
|
||||
l = lambda: test()
|
||||
|
||||
def test():
|
||||
exec "import string; string.capwords(None)" in {}
|
||||
string.capwords(1)
|
||||
|
||||
k()
|
||||
f()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue