You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Cleaning code & patch
This commit is contained in:
@@ -15,7 +15,6 @@ for i in range(10):
|
||||
else:
|
||||
print 'Else'
|
||||
|
||||
|
||||
i = 0
|
||||
while i < 10:
|
||||
i = i+1
|
||||
@@ -45,3 +44,15 @@ for x, y in [(1,2),(3,4)]:
|
||||
for x in (1, 2, 3):
|
||||
if x == 1:
|
||||
print x
|
||||
|
||||
i = 0
|
||||
while i < 10:
|
||||
i+=1
|
||||
for x in (1,2,3):
|
||||
for y in (1,2,3):
|
||||
if x == y and x == 1:
|
||||
while i < 10:
|
||||
print x
|
||||
break
|
||||
|
||||
|
||||
|
@@ -17,4 +17,4 @@ del x[1,2,3]
|
||||
|
||||
x=[1,2,3]
|
||||
b=(1 for i in x if i)
|
||||
b=(e for i in range(4) if i == 2 for j in range(7) if i + i % 2 == 0)
|
||||
b=(e for i in range(4) if i == 2)
|
Reference in New Issue
Block a user