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