File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -47,3 +47,6 @@ Patches and Suggestions
47
47
- Yorgos Pagles <yorgos@pagles.org>
48
48
49
49
- Thomas Hauk <thauk@copperleaf.com>
50
+
51
+ - Achim Herwig <python@wodca.de>
52
+
Original file line number Diff line number Diff line change 8
8
This module is private. If you use it, and something breaks, you were
9
9
warned
10
10
"""
11
- from collections import Mapping , MutableMapping
12
11
import sys
13
12
14
13
import requests
53
52
PY3 = sys .version_info > (3 , 0 )
54
53
55
54
if PY3 :
55
+ from collections .abc import Mapping , MutableMapping
56
56
import queue
57
57
from urllib .parse import urlencode , urljoin
58
58
else :
59
+ from collections import Mapping , MutableMapping
59
60
import Queue as queue
60
61
from urllib import urlencode
61
62
from urlparse import urljoin
You can’t perform that action at this time.
0 commit comments