Cleaning code & patch

This commit is contained in:
Mysterie
2012-10-11 16:32:59 +02:00
parent f91e514f44
commit 16174505a4
20 changed files with 713 additions and 1103 deletions

View File

@@ -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

View File

@@ -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)