[Python-checkins] python/nondist/peps pep-0042.txt,1.64,1.65

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Tue, 17 Dec 2002 17:33:27 -0800


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv4782

Modified Files:
	pep-0042.txt 
Log Message:
The b2a_base64() input size limit no longer exists.
IDLEfork implements the recompile, according to this mail:
  http://mail.python.org/pipermail/idle-dev/2002-December/001417.html


Index: pep-0042.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0042.txt,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** pep-0042.txt	17 Nov 2002 17:39:51 -0000	1.64
--- pep-0042.txt	18 Dec 2002 01:33:24 -0000	1.65
***************
*** 228,240 ****
  
      - Jim Fulton pointed out that binascii's b2a_base64() function
!       restricts the length of its input to 57 characters for no good
!       reason: the code would work for any input size but for this
!       check. Also, there are situations where it makes sense not to
!       append a newline, or to append something else than a newline.
  
        Proposal:
  
-         - get rid of the input size check
- 
          - add an optional argument giving the delimiter string to be
            appended, defaulting to "\n"
--- 228,236 ----
  
      - Jim Fulton pointed out that binascii's b2a_base64() function
!       has situations where it makes sense not to append a newline,
!       or to append something else than a newline.
  
        Proposal:
  
          - add an optional argument giving the delimiter string to be
            appended, defaulting to "\n"
***************
*** 277,286 ****
  
  Tools
- 
-     - IDLE should reload & recompile modules changed externally.  To
-       be done properly, scripts will have to be run in a separate
-       process.
- 
-       http://www.python.org/sf/210841
  
      - Python could use a GUI builder.
--- 273,276 ----