[New-bugs-announce] [issue12860] http client attempts to send a readable object twice

Lang Martin report at bugs.python.org
Tue Aug 30 19:05:30 CEST 2011


New submission from Lang Martin <lang.martin at 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 through first self.sock.sendall, falling back to the iterable interface.

The result is that a readable data object must support a null __iter__ method, or if it supports both a working read and __iter__, the data will be sent to the server twice.

Change the break on line 768 to a return, and the expected behavior happens.

----------
messages: 143227
nosy: langmartin
priority: normal
severity: normal
status: open
title: http client attempts to send a readable object twice
type: behavior
versions: Python 3.2

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12860>
_______________________________________


More information about the New-bugs-announce mailing list