Updated the cgi.py entry after it was resolved to remove the
self.lines attribute. This doesn't completely address the binary file upload part of the feature request.
This commit is contained in:
parent
88054b2c48
commit
0b15ededdb
|
@ -177,11 +177,10 @@ Standard Library
|
|||
Content-Type header of the section and do a chunked read if it's
|
||||
a binary type.
|
||||
|
||||
Second, because the lines that are read are stored in an
|
||||
instance attribute (self.lines -- a list), the uploaded data is
|
||||
never freed. self.lines isn't definied as part of the public
|
||||
interface it /might/ be safe to remove it. OTOH, removing it
|
||||
will break code clever and nosy code.
|
||||
The second issue was related to the self.lines attribute, which
|
||||
was removed in revision 1.56 of cgi.py (see also):
|
||||
|
||||
http://sourceforge.net/bugs/?func=detailbug&bug_id=119806&group_id=5470
|
||||
|
||||
- urllib should support proxy definitions that contain just the
|
||||
host and port
|
||||
|
|
Loading…
Reference in New Issue