[Python-checkins] cpython (2.7): Closes #19434: fix copy-paste error in MIMENonMultipart docstring.
georg.brandl
python-checkins at python.org
Thu Oct 2 12:36:24 CEST 2014
https://hg.python.org/cpython/rev/a53f2cf4b556
changeset: 92760:a53f2cf4b556
branch: 2.7
parent: 92755:7ce459fc57b9
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