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

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

Issue 29345337: Noissue - Fix edge cases with raw strings in flake8-abp (Closed)
Patch Set: Added test Created May 30, 2016, 10:17 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« flake8-abp/flake8_abp.py ('K') | « flake8-abp/flake8_abp.py ('k') | no next file » | 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(): 1 def foo():
2 return [ 2 return [
3 # A110 3 # A110
4 "foo", 4 "foo",
5 # A110 5 # A110
6 "", 6 "",
7 # A110 7 # A110
8 '\'', 8 '\'',
9 # A110 9 # A110
10 "\"", 10 "\"",
(...skipping 12 matching lines...) Expand all
23 23
24 'foo', 24 'foo',
25 '', 25 '',
26 "'", 26 "'",
27 '"', 27 '"',
28 '\'"', 28 '\'"',
29 '\xc3\xa4', 29 '\xc3\xa4',
30 b'\xc3\xa4', 30 b'\xc3\xa4',
31 u'\xe4', 31 u'\xe4',
32 r'\'\"', 32 r'\'\"',
33 r"'\"",
33 ] 34 ]
OLDNEW
« flake8-abp/flake8_abp.py ('K') | « flake8-abp/flake8_abp.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld