travis-ci
2 of 2 new or added lines in 1 file covered. (100.0%)
273 of 273 relevant lines covered (100.0%)
5.94 hits per line
1 |
# -*- coding: utf-8 -*-
|
|
2 |
from sys import version_info |
6✔ |
3 |
|
|
4 |
if version_info < (3,): |
6✔ |
5 |
from itertools import imap, izip |
2 only 22.2 and 22.1 ✔ |
6 |
map = imap |
2 only 22.2 and 22.1 ✔ |
7 |
zip = izip |
2 only 22.2 and 22.1 ✔ |
8 |
else:
|
|
9 |
map = map
|
4 all except 22.2 and 22.1 ✔ |
10 |
zip = zip
|
4 all except 22.2 and 22.1 ✔ |