Remove urlencode_noplus util method.
authorJoshua Roesslein <jroesslein@opengov.com>
Mon, 16 Feb 2015 19:36:58 +0000 (11:36 -0800)
committerJoshua Roesslein <jroesslein@opengov.com>
Mon, 16 Feb 2015 19:36:58 +0000 (11:36 -0800)
tweepy/utils.py

index a19a4d03ef1056d08786b0c1cd14763d6b1807d9..36d340251986e029b11479140c4db6cfa40ea07f 100644 (file)
@@ -56,9 +56,3 @@ def import_simplejson():
 def list_to_csv(item_list):
     if item_list:
         return ','.join([str(i) for i in item_list])
-
-
-def urlencode_noplus(query):
-    return '&'.join(['%s=%s' % (quote(str(k), ''), quote(str(v), ''))
-                    for k, v in query.items()])
-