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

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


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

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


Index: MIMEText.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/MIMEText.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** MIMEText.py	28 Sep 2002 20:27:28 -0000	1.6
--- MIMEText.py	1 Oct 2002 00:52:27 -0000	1.7
***************
*** 23,29 ****
          _subtype is the MIME sub content type, defaulting to "plain".
  
!         _charset is the character set parameter added to the Content-Type:
          header.  This defaults to "us-ascii".  Note that as a side-effect, the
!         Content-Transfer-Encoding: header will also be set.
  
          The use of the _encoder is deprecated.  The encoding of the payload,
--- 23,29 ----
          _subtype is the MIME sub content type, defaulting to "plain".
  
!         _charset is the character set parameter added to the Content-Type
          header.  This defaults to "us-ascii".  Note that as a side-effect, the
!         Content-Transfer-Encoding header will also be set.
  
          The use of the _encoder is deprecated.  The encoding of the payload,
***************
*** 43,47 ****
                            DeprecationWarning, 2)
              # Because set_payload() with a _charset will set its own
!             # Content-Transfer-Encoding: header, we need to delete the
              # existing one or will end up with two of them. :(
              del self['content-transfer-encoding']
--- 43,47 ----
                            DeprecationWarning, 2)
              # Because set_payload() with a _charset will set its own
!             # Content-Transfer-Encoding header, we need to delete the
              # existing one or will end up with two of them. :(
              del self['content-transfer-encoding']