Left: | ||
Right: |
OLD | NEW |
---|---|
1 def redundant_parenthesis(x, y, z): | 1 def redundant_parenthesis(x, y, z): |
2 # * A111 | 2 # * A111 |
3 while (x): | 3 while (x): |
4 # * A111 | 4 # * A111 |
5 if ((x or y) and z): | 5 if ((x or y) and z): |
6 pass | 6 pass |
7 # * A111 | 7 # * A111 |
8 elif (x == max(y, z)): | 8 elif (x == max(y, z)): |
9 pass | 9 pass |
10 else: | 10 else: |
11 return | 11 return |
12 | 12 |
13 | 13 |
14 def mandatory_parenthesis(x, y, z): | 14 def mandatory_parenthesis(x, y, z): |
15 if (): | 15 if (): |
16 return | 16 return |
17 if (x, y, z): | 17 if (x, y, z): |
18 return | 18 return |
19 | 19 |
20 if (x or y) and z: | 20 if (x or y) and z: |
21 return | 21 return |
22 if x and (y or z): | 22 if x and (y or z): |
23 return | 23 return |
24 | 24 |
25 if (x or | 25 if (x or |
26 y): | 26 y): |
27 return | 27 return |
OLD | NEW |