remove iter_json, don't want to commit to it

This commit is contained in:
Kenneth Reitz
2012-12-17 05:12:59 -05:00
parent 92355ada54
commit def20cdb0c
2 changed files with 0 additions and 8 deletions
-5
View File
@@ -558,11 +558,6 @@ class Response(object):
except ValueError:
return None
def iter_json(self):
for line in self.iter_lines():
if line: # filter out keep-alive new lines
yield json.loads(line)
@property
def links(self):
"""Returns the parsed header links of the response, if any."""
-3
View File
@@ -182,9 +182,6 @@ class Session(SessionRedirectMixin):
def __exit__(self, *args):
self.close()
def close(self):
pass
def request(self, method, url,
params=None,
data=None,