There was an error while loading. Please reload this page.
1 parent 835011b commit c6fea20Copy full SHA for c6fea20
2 files changed
setup.py
@@ -17,7 +17,7 @@
17
'''The setup and build script for the python-twitter library.'''
18
19
__author__ = 'python-twitter@googlegroups.com'
20
-__version__ = '1.1.5'
+__version__ = '1.1.6'
21
22
23
# The base package metadata to be used by both distutils and setuptools
twitter.py
@@ -23,19 +23,25 @@
24
25
try:
26
+ # Python 2
27
import rfc822
28
except ImportError:
29
+ # Python 3
30
import email
31
32
33
34
import urlparse
35
36
37
import urllib.parse as urlparse
38
39
40
41
import StringIO
42
- import io.StringIO as StringIO
43
44
+ from io import StringIO
45
46
import os
47
import urllib
0 commit comments