From: Joshua Roesslein Date: Mon, 16 Feb 2015 19:36:58 +0000 (-0800) Subject: Remove urlencode_noplus util method. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=88172bf720bfbd71af8c91b9e81075a03b35f9dd;p=tweepy.git Remove urlencode_noplus util method. --- 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()]) -