projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d38790
)
remove debug print
author
Ronny Pfannschmidt
<Ronny.Pfannschmidt@gmx.de>
Tue, 17 Jan 2012 16:39:37 +0000
(17:39 +0100)
committer
Ronny Pfannschmidt
<Ronny.Pfannschmidt@gmx.de>
Tue, 17 Jan 2012 16:39:37 +0000
(17:39 +0100)
requests/models.py
patch
|
blob
|
history
diff --git
a/requests/models.py
b/requests/models.py
index 4196376b5e4d8420cb569acbfcdecdfcdc09f702..5d45d7a477039edbec69dec33f532129ae863297 100644
(file)
--- a/
requests/models.py
+++ b/
requests/models.py
@@
-634,12
+634,6
@@
class Response(object):
if getattr(getattr(self.raw, '_original_response', None), 'chunked', False):
gen = generate_chunked()
-
- def hack_gen(gen=gen):
- for item in gen:
- print repr(item)
- yield item
- gen = hack_gen()
else:
gen = generate()