Module message
Basic message object for the email package object model.
|
|
_formatparam(param,
value=None,
quote=True)
Convenience function to format and return a key=value pair. |
|
|
|
|
|
|
|
|
|
|
SEMISPACE = '; '
|
|
|
paramre = re.compile(r'\s*;\s*')
|
|
|
tspecials = re.compile(r'[ \(\)<>@,;:\\"/\[\]\?=]')
|
Imports:
re,
uu,
binascii,
warnings,
StringIO,
email,
utils,
errors
_formatparam(param,
value=None,
quote=True)
|
|
Convenience function to format and return a key=value pair.
This will quote the value if needed or if quote is true.
|