Skip to content

Commit 3dbef22

Browse files
Remove unused compat types from compat.py
[ci skip]
1 parent f7f19db commit 3dbef22

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

twython/compat.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,10 @@
2020
except ImportError:
2121
from cgi import parse_qsl
2222

23-
builtin_str = str
24-
bytes = str
25-
str = unicode
2623
basestring = basestring
27-
numeric_types = (int, long, float)
2824

2925

3026
elif is_py3:
3127
from urllib.parse import urlencode, quote_plus, parse_qsl
3228

33-
builtin_str = str
34-
str = str
35-
bytes = bytes
3629
basestring = (str, bytes)
37-
numeric_types = (int, float)

0 commit comments

Comments
 (0)