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
|
Content-Type header of the section and do a chunked read if it's
|
||||||
a binary type.
|
a binary type.
|
||||||
|
|
||||||
Second, because the lines that are read are stored in an
|
The second issue was related to the self.lines attribute, which
|
||||||
instance attribute (self.lines -- a list), the uploaded data is
|
was removed in revision 1.56 of cgi.py (see also):
|
||||||
never freed. self.lines isn't definied as part of the public
|
|
||||||
interface it /might/ be safe to remove it. OTOH, removing it
|
http://sourceforge.net/bugs/?func=detailbug&bug_id=119806&group_id=5470
|
||||||
will break code clever and nosy code.
|
|
||||||
|
|
||||||
- urllib should support proxy definitions that contain just the
|
- urllib should support proxy definitions that contain just the
|
||||||
host and port
|
host and port
|
||||||
|
|
Loading…
Reference in New Issue