From 0b15ededdb4d8a0c41a780c06eba18ae2d78eea5 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 6 Nov 2000 18:49:06 +0000 Subject: [PATCH] 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. --- pep-0042.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pep-0042.txt b/pep-0042.txt index 90bfdb8ff..402771037 100644 --- a/pep-0042.txt +++ b/pep-0042.txt @@ -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