<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
ž
¦ÿfý  c               @   sy   d  Z  d Z d d d d d d d d	 d
 d d d d d d d d g Z d d „  Z d d „  Z d d „  Z d d „  Z d S(   u?   A package for parsing, handling, and generating email messages.u   5.1.0u
   base64mimeu   charsetu   encodersu   errorsu
   feedparseru	   generatoru   headeru	   iteratorsu   messageu   message_from_fileu   message_from_binary_fileu   message_from_stringu   message_from_bytesu   mimeu   parseru
   quoprimimeu   utilsc             O   s&   d d l  m } | | | Ž  j |  ƒ S(   uv   Parse a string into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    i    (   u   Parser(   u   email.parseru   Parseru   parsestr(   u   su   argsu   kwsu   Parser(    (    u3   /opt/alt/python33/lib64/python3.3/email/__init__.pyu   message_from_string"   s    c             O   s&   d d l  m } | | | Ž  j |  ƒ S(   u|   Parse a bytes string into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    i    (   u   BytesParser(   u   email.parseru   BytesParseru
   parsebytes(   u   su   argsu   kwsu   BytesParser(    (    u3   /opt/alt/python33/lib64/python3.3/email/__init__.pyu   message_from_bytes*   s    c             O   s&   d d l  m } | | | Ž  j |  ƒ S(   uŠ   Read a file and parse its contents into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    i    (   u   Parser(   u   email.parseru   Parseru   parse(   u   fpu   argsu   kwsu   Parser(    (    u3   /opt/alt/python33/lib64/python3.3/email/__init__.pyu   message_from_file2   s    c             O   s&   d d l  m } | | | Ž  j |  ƒ S(   u‘   Read a binary file and parse its contents into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    i    (   u   BytesParser(   u   email.parseru   BytesParseru   parse(   u   fpu   argsu   kwsu   BytesParser(    (    u3   /opt/alt/python33/lib64/python3.3/email/__init__.pyu   message_from_binary_file:   s    N(   u   __doc__u   __version__u   __all__u   message_from_stringu   message_from_bytesu   message_from_fileu   message_from_binary_file(    (    (    u3   /opt/alt/python33/lib64/python3.3/email/__init__.pyu   <module>   s,   	