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

Side by Side Diff: flake8-eyeo/tests/A106.py

Issue 29375591: Issue 4882 - Renamed flake8-abp to flake8-eyeo (Closed)
Patch Set: Adapted patchconv/tox.ini Created Feb. 13, 2017, 1:11 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-eyeo/tests/A105.py ('k') | flake8-eyeo/tests/A107.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 def foo(x, y): 1 def foo(x, y):
2 # A106 2 # A106
3 x = x + y 3 x = x + y
4 # A106 4 # A106
5 x = x - y 5 x = x - y
6 # A106 6 # A106
7 x = x * y 7 x = x * y
8 # A106 8 # A106
9 x = x / y 9 x = x / y
10 # A106 10 # A106
(...skipping 29 matching lines...) Expand all
40 x = x in y 40 x = x in y
41 x = x is y 41 x = x is y
42 x = x or y 42 x = x or y
43 x = x and y 43 x = x and y
44 x = x == y 44 x = x == y
45 x = x != y 45 x = x != y
46 x = x < y 46 x = x < y
47 x = x > y 47 x = x > y
48 x = x >= y 48 x = x >= y
49 x = x <= y 49 x = x <= y
OLDNEW
« no previous file with comments | « flake8-eyeo/tests/A105.py ('k') | flake8-eyeo/tests/A107.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld