| __pycache__ | |||
| __init__.py | |||
| application.py | |||
| audio.py | |||
| base.py | |||
| image.py | |||
| message.py | |||
| multipart.py | |||
| nonmultipart.py | |||
| text.py |
|
Server : LiteSpeed System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : alloknri ( 880) PHP Version : 8.1.34 Disable Function : NONE Directory : /opt/alt/python311/lib64/python3.11/email/mime/ |
# Copyright (C) 2002-2006 Python Software Foundation
# Author: Barry Warsaw
# Contact: email-sig@python.org
"""Base class for MIME type messages that are not multipart."""
__all__ = ['MIMENonMultipart']
from email import errors
from email.mime.base import MIMEBase
class MIMENonMultipart(MIMEBase):
"""Base class for MIME non-multipart type messages."""
def attach(self, payload):
# The public API prohibits attaching multiple subparts to MIMEBase
# derived subtypes since none of them are, by definition, of content
# type multipart/*
raise errors.MultipartConversionError(
'Cannot attach additional subparts to non-multipart/*')
| __pycache__ | |||
| __init__.py | |||
| application.py | |||
| audio.py | |||
| base.py | |||
| image.py | |||
| message.py | |||
| multipart.py | |||
| nonmultipart.py | |||
| text.py |