1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| ó
| Y\¬Qc @ sO d Z d d l m Z d d l m Z m Z m Z d e j f d YZ d S( s7
| Fixer that changes zip(seq0, seq1, ...) into list(zip(seq0, seq1, ...)
| unless there exists a 'from future_builtins import zip' statement in the
| top-level namespace.
|
| We avoid the transformation if the zip() call is directly contained in
| iter(<>), list(<>), tuple(<>), sorted(<>), ...join(<>), or for V in <>:.
| i ( t
|
|
|