push
travis-ci
2072 of 2146 relevant lines covered (96.55%)
4.82 hits per line
1 |
# -*- coding: utf-8 -*-
|
|
2 |
# flake8: noqa
|
|
3 |
from __future__ import unicode_literals |
5✔ |
4 |
|
|
5 |
try:
|
5✔ |
6 |
from collections import OrderedDict |
5✔ |
7 |
except ImportError: |
× |
8 |
from ordereddict import OrderedDict |
× |
9 |
|
|
10 |
try:
|
5✔ |
11 |
from urlparse import urlparse, urlunparse |
5✔ |
12 |
except ImportError: |
3 all except 367.2 and 367.6 ✔ |
13 |
from urllib.parse import urlparse, urlunparse |
3 all except 367.2 and 367.6 ✔ |