
    Fwg                     ~    d Z ddlmZ ddlmZ ddlmZ ddlmZ  ej                          dZg dZ	d Z
d	 Zd
 Zd Zy)z~
Backport of the Python 3.3 email package for Python-Future.

A package for parsing, handling, and generating email messages.
    )unicode_literals)division)absolute_import)surrogateescapez5.1.0)
base64mimecharsetencoderserrors
feedparser	generatorheader	iteratorsmessagemessage_from_filemessage_from_binary_filemessage_from_stringmessage_from_bytesmimeparser
quoprimimeutilsc                 <    ddl m}  ||i |j                  |       S )zvParse a string into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    r   Parser)future.backports.email.parserr   parsestr)sargskwsr   s       V/var/www/horilla/myenv/lib/python3.12/site-packages/future/backports/email/__init__.pyr   r   0   s"    
 543((++    c                 <    ddl m}  ||i |j                  |       S )z|Parse a bytes string into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    r   BytesParser)r   r$   
parsebytes)r   r   r   r$   s       r    r   r   8   s"    
 :$$//22r!   c                 <    ddl m}  ||i |j                  |       S )zRead a file and parse its contents into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    r   r   )r   r   parse)fpr   r   r   s       r    r   r   @   s"    
 543%%b))r!   c                 <    ddl m}  ||i |j                  |       S )zRead a binary file and parse its contents into a Message object model.

    Optional _class and strict are passed to the Parser constructor.
    r   r#   )r   r$   r'   )r(   r   r   r$   s       r    r   r   H   s"    
 :$$**2..r!   N)__doc__
__future__r   r   r   future.utilsr   register_surrogateescape__version____all__r   r   r   r    r!   r    <module>r1      sJ   

 (  & ) ( ( ( * 2,3*/r!   