blob: 37cb345a1adf2189872140286f45664bff4fe183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
try:
pycco_unichr = unichr
except NameError:
pycco_unichr = chr
import itertools
try:
pycco_zip_longest = itertools.zip_longest
except AttributeError:
import itertools
pycco_zip_longest = itertools.izip_longest
|