Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 class Foo: | 1 # A112 |
2 def unicode(self): | 2 u"""This is a bad docstring""" |
3 # A112 | |
4 u"""This should not be a unicode docstring""" | |
5 | 3 |
6 | 4 # * A112 |
7 def foo(): | 5 foo = u'nope' |
8 return [ | |
9 # A112 | |
10 u'yeahyeah' | |
11 ] | |
LEFT | RIGHT |