[Python-checkins] python/dist/src/Lib/email MIMEMultipart.py,1.2,1.3
barry@users.sourceforge.net
barry@users.sourceforge.net
2002年9月30日 14:24:02 -0700
Update of /cvsroot/python/python/dist/src/Lib/email
In directory usw-pr-cvs1:/tmp/cvs-serv28878
Modified Files:
MIMEMultipart.py
Log Message:
Docstring consistency with the updated .tex files.
Index: MIMEMultipart.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/MIMEMultipart.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** MIMEMultipart.py 9 Jul 2002 02:44:26 -0000 1.2
--- MIMEMultipart.py 30 Sep 2002 21:24:00 -0000 1.3
***************
*** 16,20 ****
By default, creates a multipart/mixed message, with proper
! Content-Type: and MIME-Version: headers.
_subtype is the subtype of the multipart content type, defaulting to
--- 16,20 ----
By default, creates a multipart/mixed message, with proper
! Content-Type and MIME-Version headers.
_subtype is the subtype of the multipart content type, defaulting to
***************
*** 24,32 ****
calculated as needed.
! _subparts is a sequence of initial subparts for the multipart. It
must be possible to convert this sequence to a list. You can always
attach new subparts to the message by using the attach() method.
! Additional parameters for the Content-Type: header are taken from the
keyword arguments (or passed into the _params argument).
"""
--- 24,32 ----
calculated as needed.
! _subparts is a sequence of initial subparts for the payload. It
must be possible to convert this sequence to a list. You can always
attach new subparts to the message by using the attach() method.
! Additional parameters for the Content-Type header are taken from the
keyword arguments (or passed into the _params argument).
"""