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

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

Issue 29345337: Noissue - Fix edge cases with raw strings in flake8-abp (Closed)
Left Patch Set: Created May 30, 2016, 9:42 a.m.
Right 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:
Right: Side by side diff | Download
« no previous file with change/comment | « flake8-abp/flake8_abp.py ('k') | no next file » | 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(): 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 ]
LEFTRIGHT

Powered by Google App Engine
This is Rietveld