[Python-checkins] CVS: python/dist/src/Lib base64.py,1.7,1.8

Guido van Rossum guido@cnri.reston.va.us
Mon, 3 Jan 2000 10:44:42 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
	base64.py 
Log Message:
The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM).


Index: base64.py
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Lib/base64.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** base64.py	1998/05/22 18:18:08	1.7
--- base64.py	2000/01/03 15:44:40	1.8
***************
*** 1,8 ****
  #! /usr/bin/env python
  
! # Conversions to/from base64 transport encoding as per RFC-MIME (Dec 1991
! # version).
! 
! # Parameters set by RFC-1421.
  #
  # Modified 04-Oct-95 by Jack to use binascii module
--- 1,5 ----
  #! /usr/bin/env python
  
! # Conversions to/from base64 transport encoding as per RFC-1521.
  #
  # Modified 04-Oct-95 by Jack to use binascii module