Xuanji Li <xua...@gmail.com> added the comment:

davide: yeah, hasattr("lol", '__next__') == False, even though strings are 
Iterable; so for strings and other such sequences the len(data) line will be 
executed. So technically we shouldn't say "No Content-Length specified for 
iterable body" but we should say "No Content-Length specified for iterable body 
that is not a sequence". 

Basically, this whole patch (both parts of it) will be much better off iif 
there is a clean way to say "a is an iterable but a is not a sequence", because 
even though b'this is a message' is Iterable, we want to treat it differently 
compared to, say, a generator object; we do NOT want to use the Iterator 
features (iter, next) of it, we want to use the sequencey features (by sending 
the whole chunk of it, by calling len)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue3243>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to