[Python-checkins] cpython (3.4): Closes #19434: fix copy-paste error in MIMENonMultipart docstring.

georg.brandl python-checkins at python.org
Thu Oct 2 12:36:04 CEST 2014


https://hg.python.org/cpython/rev/41f46f7f2722
changeset:   92758:41f46f7f2722
branch:      3.4
parent:      92756:8c5555dea138
user:        Georg Brandl <georg at python.org>
date:        Thu Oct 02 12:35:08 2014 +0200
summary:
  Closes #19434: fix copy-paste error in MIMENonMultipart docstring.

files:
  Lib/email/mime/nonmultipart.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/email/mime/nonmultipart.py b/Lib/email/mime/nonmultipart.py
--- a/Lib/email/mime/nonmultipart.py
+++ b/Lib/email/mime/nonmultipart.py
@@ -12,7 +12,7 @@
 
 

 class MIMENonMultipart(MIMEBase):
-    """Base class for MIME multipart/* type messages."""
+    """Base class for MIME non-multipart type messages."""
 
     def attach(self, payload):
         # The public API prohibits attaching multiple subparts to MIMEBase

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list