mimenonmultipart.py
字号:
# Copyright (C) 2002 Python Software Foundation# Author: barry@zope.com (Barry Warsaw)"""Base class for MIME type messages that are not multipart."""from email import Errorsfrom email import MIMEBaseclass MIMENonMultipart(MIMEBase.MIMEBase): """Base class for MIME multipart/* type messages.""" __pychecker__ = 'unusednames=payload' 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/*') del __pychecker__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -