]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/text.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / email / mime / text.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/text.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/text.py
deleted file mode 100644 (file)
index 3a4764e..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (C) 2001-2006 Python Software Foundation\r
-# Author: Barry Warsaw\r
-# Contact: email-sig@python.org\r
-\r
-"""Class representing text/* type MIME documents."""\r
-\r
-__all__ = ['MIMEText']\r
-\r
-from email.encoders import encode_7or8bit\r
-from email.mime.nonmultipart import MIMENonMultipart\r
-\r
-\r
-\f\r
-class MIMEText(MIMENonMultipart):\r
-    """Class for generating text/* type MIME documents."""\r
-\r
-    def __init__(self, _text, _subtype='plain', _charset='us-ascii'):\r
-        """Create a text/* type MIME document.\r
-\r
-        _text is the string for this message object.\r
-\r
-        _subtype is the MIME sub content type, defaulting to "plain".\r
-\r
-        _charset is the character set parameter added to the Content-Type\r
-        header.  This defaults to "us-ascii".  Note that as a side-effect, the\r
-        Content-Transfer-Encoding header will also be set.\r
-        """\r
-        MIMENonMultipart.__init__(self, 'text', _subtype,\r
-                                  **{'charset': _charset})\r
-        self.set_payload(_text, _charset)\r