[Python-checkins] python/dist/src/Lib/email MIMEAudio.py,1.3,1.4

barry@users.sourceforge.net barry@users.sourceforge.net
Mon, 30 Sep 2002 14:29:13 -0700


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

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


Index: MIMEAudio.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/MIMEAudio.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MIMEAudio.py	2 Jun 2002 19:04:39 -0000	1.3
--- MIMEAudio.py	30 Sep 2002 21:29:10 -0000	1.4
***************
*** 47,51 ****
          _audiodata is a string containing the raw audio data.  If this data
          can be decoded by the standard Python `sndhdr' module, then the
!         subtype will be automatically included in the Content-Type: header.
          Otherwise, you can specify  the specific audio subtype via the
          _subtype parameter.  If _subtype is not given, and no subtype can be
--- 47,51 ----
          _audiodata is a string containing the raw audio data.  If this data
          can be decoded by the standard Python `sndhdr' module, then the
!         subtype will be automatically included in the Content-Type header.
          Otherwise, you can specify  the specific audio subtype via the
          _subtype parameter.  If _subtype is not given, and no subtype can be
***************
*** 56,64 ****
          Image instance.  It should use get_payload() and set_payload() to
          change the payload to the encoded form.  It should also add any
!         Content-Transfer-Encoding: or other headers to the message as
          necessary.  The default encoding is Base64.
  
          Any additional keyword arguments are passed to the base class
!         constructor, which turns them into parameters on the Content-Type:
          header.
          """
--- 56,64 ----
          Image instance.  It should use get_payload() and set_payload() to
          change the payload to the encoded form.  It should also add any
!         Content-Transfer-Encoding or other headers to the message as
          necessary.  The default encoding is Base64.
  
          Any additional keyword arguments are passed to the base class
!         constructor, which turns them into parameters on the Content-Type
          header.
          """