| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # * A302 | |
| 2 def foo(type): | |
| 3 # A302 | |
| 4 from io import open | |
| 5 file = open(__file__) | |
| 6 | |
| 7 # A302 | |
| 8 id = 0 | |
| 9 | |
| 10 return (file, id) | |
| 11 | |
| 12 | |
| 13 try: | |
| 14 unichr | |
| 15 except NameError: | |
| 16 unichr = chr | |
| 17 | |
| 18 | |
| 19 class Foo: | |
| 20 id = 0 | |
| 21 | |
| 22 def type(self): | |
| 23 pass | |
| OLD | NEW |