From: Barry Warsaw Date: Tue, 28 Sep 2004 04:55:34 +0000 (+0000) Subject: __getitem__(): Fix docstring, SF 979924. X-Git-Tag: v2.3.5c1~106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5a6b23719227a38a2ab92ae224f3a98de05b6c3;p=thirdparty%2FPython%2Fcpython.git __getitem__(): Fix docstring, SF 979924. --- diff --git a/Lib/email/Message.py b/Lib/email/Message.py index aefa37f14f09..b5302d79b75c 100644 --- a/Lib/email/Message.py +++ b/Lib/email/Message.py @@ -298,7 +298,7 @@ class Message: 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)