[issue12860] http client attempts to send a readable object twice

2014-06-25 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Missing "return" in HTTPConnection.send() versions: +Python 3.3, Python 3.4 -Python 3.2 ___ Python tracker

[issue12860] http client attempts to send a readable object twice

2014-06-25 Thread Mark Lawrence
Mark Lawrence added the comment: This looks identical to the problem fixed on #16658. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue12860] http client attempts to send a readable object twice

2011-09-02 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue12860] http client attempts to send a readable object twice

2011-08-30 Thread Lang Martin
New submission from Lang Martin : on line 765 of client/http.py, the client loops over the read method, sending it's content to the web server. It appears as though the send method should return at this point; instead it falls through and attempts to send the data object through first self.soc