[New-bugs-announce] [issue14562] urllib2 maybe blocks too long

Anrs Hu report at bugs.python.org
Thu Apr 12 14:23:10 CEST 2012


New submission from Anrs Hu <anders.x.hu at gmail.com>:

If HTTP URL response's Transfer-Encoding is 'Chunked', then the urllib2.urlopen(URL).readline() will block until there're enough 8192 bytes, even though the first chunk is just a line. 

Every chunks should be processed as soon as posible, so the readline() behavior should read a line and return immediately, rather than read 8K data to buffer and look up a line from the buffer.

----------
components: Library (Lib)
messages: 158124
nosy: Anrs.Hu
priority: normal
severity: normal
status: open
title: urllib2 maybe blocks too long
type: behavior
versions: Python 2.7

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


More information about the New-bugs-announce mailing list