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