Allow for long's as well as ints for request params #207

Merged
devdave merged 4 commits from patch-1 into master 2013-05-29 08:35:49 -07:00
Showing only changes of commit b0d801b7bb - Show all commits

View file

@ -22,6 +22,7 @@ if is_py2:
str = unicode str = unicode
basestring = basestring basestring = basestring
numeric_types = (int, long, float)
elif is_py3: elif is_py3:
@ -29,3 +30,4 @@ elif is_py3:
str = str str = str
basestring = (str, bytes) basestring = (str, bytes)
numeric_types = (int, float)