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

Delta Between Two Patch Sets: flake8-abp/tests/A106.py

Issue 29340727: Noissue - Added flake8 extension accounting for our coding style and some other stuff (Closed)
Left Patch Set: Added check for redundant paranthesis Created April 22, 2016, 2:22 p.m.
Right 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:
Right: Side by side diff | Download
« no previous file with change/comment | « flake8-abp/tests/A105.py ('k') | flake8-abp/tests/A107.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 def foo(x, y):
2 # A106
3 x = x + y
4 # A106
5 x = x - y
6 # A106
7 x = x * y
8 # A106
9 x = x / y
10 # A106
11 x = x % y
12 # A106
13 x = x & y
14 # A106
15 x = x | y
16 # A106
17 x = x ^ y
18 # A106
19 x = x // y
20 # A106
21 x = x ** y
22 # A106
23 x = x >> y
24 # A106
25 x = x << y
26
27 x += y
28 x -= y
29 x *= y
30 x /= y
31 x %= y
32 x &= y
33 x |= y
34 x ^= y
35 x //= y
36 x **= y
37 x >>= y
38 x <<= y
39
40 x = x in y
41 x = x is y
42 x = x or y
43 x = x and y
44 x = x == y
45 x = x != y
46 x = x < y
47 x = x > y
48 x = x >= y
49 x = x <= y
LEFTRIGHT

Powered by Google App Engine
This is Rietveld