[Python-checkins] CVS: python/nondist/peps pep-0042.txt,1.42,1.43

Barry Warsaw python-dev@python.org
Mon, 6 Nov 2000 10:49:08 -0800


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv8189

Modified Files:
	pep-0042.txt 
Log Message:
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.


Index: pep-0042.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0042.txt,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -r1.42 -r1.43
*** pep-0042.txt	2000/11/02 16:54:19	1.42
--- pep-0042.txt	2000/11/06 18:49:06	1.43
***************
*** 178,186 ****
        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.
  
      - urllib should support proxy definitions that contain just the
--- 178,185 ----
        a binary type.
  
!       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