Left: | ||
Right: |
LEFT | RIGHT |
---|---|
(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 Loading... | |
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 ] |
LEFT | RIGHT |