From 88172bf720bfbd71af8c91b9e81075a03b35f9dd Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Mon, 16 Feb 2015 11:36:58 -0800 Subject: [PATCH] Remove urlencode_noplus util method. --- tweepy/utils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tweepy/utils.py b/tweepy/utils.py index a19a4d0..36d3402 100644 --- a/tweepy/utils.py +++ b/tweepy/utils.py @@ -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()]) - -- 2.25.1