 Issue 29342824:
  Issue 4044 - Added handling for __future__ unicode_literals import to check_quotes()  (Closed)
    
  
    Issue 29342824:
  Issue 4044 - Added handling for __future__ unicode_literals import to check_quotes()  (Closed) 
  | 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""" | |
| 
Sebastian Noack
2016/05/27 12:33:48
This test code can be simplified by using a functi
 | |
| 5 | 3 | 
| 6 | 4 # * A112 | 
| 7 def foo(): | 5 foo = u'nope' | 
| 8 return [ | |
| 
Sebastian Noack
2016/05/27 12:33:48
This test code can b e simplified by just returnin
 | |
| 9 # A112 | |
| 10 u'yeahyeah' | |
| 11 ] | |
| LEFT | RIGHT |