[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 rep...@bugs.python.org http://bugs.python.org/issue12860 ___

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

2014-06-25 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- 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 rep...@bugs.python.org

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

2011-09-02 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12860 ___ ___ Python-bugs-list mailing

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

2011-08-30 Thread Lang Martin
New submission from Lang Martin lang.mar...@gmail.com: 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