[Python-checkins] python/dist/src/Lib/email Message.py, 1.32.10.4, 1.32.10.5

bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Tue Sep 28 06:55:38 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/email
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4759

Modified Files:
      Tag: release23-maint
	Message.py 
Log Message:
__getitem__(): Fix docstring, SF 979924.


Index: Message.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Message.py,v
retrieving revision 1.32.10.4
retrieving revision 1.32.10.5
diff -u -d -r1.32.10.4 -r1.32.10.5
--- Message.py	16 Aug 2004 15:31:42 -0000	1.32.10.4
+++ Message.py	28 Sep 2004 04:55:34 -0000	1.32.10.5
@@ -298,7 +298,7 @@
         Return None if the header is missing instead of raising an exception.
 
         Note that if the header appeared multiple times, exactly which
-        occurrance gets returned is undefined.  Use getall() to get all
+        occurrance gets returned is undefined.  Use get_all() to get all
         the values matching a header field name.
         """
         return self.get(name)



More information about the Python-checkins mailing list