<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import logging

from .message_base import MessageBase


logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())


# Due to changes to how saving works, Message is now identical to MessageBase,
# just with a different name. This is for backwards compatability, type
# identification, and possible future specializations to it.
class Message(MessageBase):
    """
    Parser for Microsoft Outlook message files.
    """
</pre></body></html>