[Python-checkins] python/dist/src/Lib/email Encoders.py,1.6,1.7

barry@users.sourceforge.net barry@users.sourceforge.net
Mon, 30 Sep 2002 17:05:26 -0700


Update of /cvsroot/python/python/dist/src/Lib/email
In directory usw-pr-cvs1:/tmp/cvs-serv29955

Modified Files:
	Encoders.py 
Log Message:
Docstring consistency with the updated .tex files.


Index: Encoders.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Encoders.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Encoders.py	19 May 2002 23:44:19 -0000	1.6
--- Encoders.py	1 Oct 2002 00:05:24 -0000	1.7
***************
*** 52,56 ****
      """Encode the message's payload in Base64.
  
!     Also, add an appropriate Content-Transfer-Encoding: header.
      """
      orig = msg.get_payload()
--- 52,56 ----
      """Encode the message's payload in Base64.
  
!     Also, add an appropriate Content-Transfer-Encoding header.
      """
      orig = msg.get_payload()
***************
*** 62,68 ****
  
  def encode_quopri(msg):
!     """Encode the message's payload in Quoted-Printable.
  
!     Also, add an appropriate Content-Transfer-Encoding: header.
      """
      orig = msg.get_payload()
--- 62,68 ----
  
  def encode_quopri(msg):
!     """Encode the message's payload in quoted-printable.
  
!     Also, add an appropriate Content-Transfer-Encoding header.
      """
      orig = msg.get_payload()
***************
*** 74,78 ****
  
  def encode_7or8bit(msg):
!     """Set the Content-Transfer-Encoding: header to 7bit or 8bit."""
      orig = msg.get_payload()
      if orig is None:
--- 74,78 ----
  
  def encode_7or8bit(msg):
!     """Set the Content-Transfer-Encoding header to 7bit or 8bit."""
      orig = msg.get_payload()
      if orig is None: