[Python-checkins] CVS: python/dist/src/Lib/email Message.py,1.8,1.9

Barry Warsaw bwarsaw@users.sourceforge.net
Sat, 24 Nov 2001 08:56:58 -0800


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

Modified Files:
	Message.py 
Log Message:
More typo fixes.


Index: Message.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Message.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Message.py	2001/11/24 15:49:53	1.8
--- Message.py	2001/11/24 16:56:56	1.9
***************
*** 193,197 ****
          These will be sorted in the order they appeared in the original
          message, and may contain duplicates.  Any fields deleted and
!         re-inserted are alwyas appended to the header list.
          """
          return [v for k, v in self._headers]
--- 193,197 ----
          These will be sorted in the order they appeared in the original
          message, and may contain duplicates.  Any fields deleted and
!         re-inserted are always appended to the header list.
          """
          return [v for k, v in self._headers]
***************
*** 202,206 ****
          These will be sorted in the order they appeared in the original
          message, and may contain duplicates.  Any fields deleted and
!         re-inserted are alwyas appended to the header list.
          """
          return self._headers[:]
--- 202,206 ----
          These will be sorted in the order they appeared in the original
          message, and may contain duplicates.  Any fields deleted and
!         re-inserted are always appended to the header list.
          """
          return self._headers[:]