Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: flake8-abp/tests/A111.py

Issue 29340727: Noissue - Added flake8 extension accounting for our coding style and some other stuff (Closed)
Patch Set: Addressed comments, fixed two bugs, use ascii() Created May 9, 2016, 4:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « flake8-abp/tests/A110.py ('k') | flake8-abp/tests/A201.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 def redundant_parenthesis(x, y, z):
2 # * A111
3 while (x):
4 # * A111
5 if ((x or y) and z):
6 pass
7 # * A111
8 elif (x == max(y, z)):
9 pass
10 else:
11 return
12
13
14 def mandatory_parenthesis(x, y, z):
15 if ():
16 return
17 if (x, y, z):
18 return
19
20 if (x or y) and z:
21 return
22 if x and (y or z):
23 return
24
25 if (x or
26 y):
27 return
OLDNEW
« no previous file with comments | « flake8-abp/tests/A110.py ('k') | flake8-abp/tests/A201.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld