1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| ó
| Y\¬Qc @ sC d Z d d l m Z d d l m Z d e j f d YZ d S( s, Fixer that cleans up a tuple argument to isinstance after the tokens
| in it were fixed. This is mainly used to remove double occurrences of
| tokens as a leftover of the long -> int / unicode -> str conversion.
|
| eg. isinstance(x, (int, long)) -> isinstance(x, (int, int))
| -> isinstance(x, int)
| i ( t
|
|
|