File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 16
16
itervalues = lambda d : d .itervalues ()
17
17
iteritems = lambda d : d .iteritems ()
18
18
19
+ import ConfigParser as configparser
20
+ import cPickle as pickle
19
21
from cStringIO import StringIO as BytesIO
20
22
from StringIO import StringIO
21
- import cPickle as pickle
22
- import ConfigParser as configparser
23
23
24
24
cmp = cmp
25
25
26
26
input = raw_input
27
27
from string import lower as ascii_lowercase
28
+
28
29
import urlparse
29
30
30
31
def console_to_str (s ):
@@ -45,16 +46,16 @@ def implements_to_string(cls):
45
46
itervalues = lambda d : iter (d .values ())
46
47
iteritems = lambda d : iter (d .items ())
47
48
48
- from io import StringIO , BytesIO
49
- import pickle
50
49
import configparser
50
+ import pickle
51
+ from io import BytesIO , StringIO
51
52
52
53
cmp = lambda a , b : (a > b ) - (a < b )
53
54
54
55
input = input
55
- from string import ascii_lowercase
56
56
import urllib .parse as urllib
57
57
import urllib .parse as urlparse
58
+ from string import ascii_lowercase
58
59
from urllib .request import urlretrieve
59
60
60
61
console_encoding = sys .__stdout__ .encoding
You can’t perform that action at this time.
0 commit comments