projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ab1222
)
Remove urlencode_noplus util method.
author
Joshua Roesslein
<jroesslein@opengov.com>
Mon, 16 Feb 2015 19:36:58 +0000
(11:36 -0800)
committer
Joshua Roesslein
<jroesslein@opengov.com>
Mon, 16 Feb 2015 19:36:58 +0000
(11:36 -0800)
tweepy/utils.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/utils.py
b/tweepy/utils.py
index a19a4d03ef1056d08786b0c1cd14763d6b1807d9..36d340251986e029b11479140c4db6cfa40ea07f 100644
(file)
--- 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()])
-