[Python-checkins] r78658 - in python/branches/release31-maint: Doc/library/email.message.rst

r.david.murray python-checkins at python.org
Thu Mar 4 18:43:40 CET 2010


Author: r.david.murray
Date: Thu Mar  4 18:43:40 2010
New Revision: 78658

Log:
Merged revisions 78657 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78657 | r.david.murray | 2010-03-04 12:38:18 -0500 (Thu, 04 Mar 2010) | 10 lines
  
  Merged revisions 78656 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r78656 | r.david.murray | 2010-03-04 12:34:05 -0500 (Thu, 04 Mar 2010) | 3 lines
    
    Fix documentation of email.Message.get_filename to match
    the fix applied in Issue 7082.
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/email.message.rst

Modified: python/branches/release31-maint/Doc/library/email.message.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/email.message.rst	(original)
+++ python/branches/release31-maint/Doc/library/email.message.rst	Thu Mar  4 18:43:40 2010
@@ -415,9 +415,10 @@
       Return the value of the ``filename`` parameter of the
       :mailheader:`Content-Disposition` header of the message.  If the header
       does not have a ``filename`` parameter, this method falls back to looking
-      for the ``name`` parameter.  If neither is found, or the header is
-      missing, then *failobj* is returned.  The returned string will always be
-      unquoted as per :func:`email.utils.unquote`.
+      for the ``name`` parameter on the :mailheader:`Content-Type` header.  If
+      neither is found, or the header is missing, then *failobj* is returned.
+      The returned string will always be unquoted as per
+      :func:`email.utils.unquote`.
 
 
    .. method:: get_boundary(failobj=None)


More information about the Python-checkins mailing list