o
    fW                     @   sJ   d Z g dZddlZddlmZ dd Zddd	ZdddZdddZdS )z1Various types of useful iterators and generators.)body_line_iteratortyped_subpart_iteratorwalk    N)StringIOc                 c   s4    | V  |   r|  D ]}| E dH  qdS dS )zWalk over the message tree, yielding each subpart.

    The walk is performed in depth-first order.  This method is a
    generator.
    N)is_multipartget_payloadr   )selfsubpart r
   &/usr/lib/python3.10/email/iterators.pyr      s   r   Fc                 c   s8    |   D ]}|j|d}t|trt|E dH  qdS )zIterate over the parts, returning string payloads line-by-line.

    Optional decode (default False) is passed through to .get_payload().
    )decodeN)r   r   
isinstancestrr   )msgr   r	   payloadr
   r
   r   r   "   s   
r   textc                 c   s:    |   D ]}| |kr|du s| |kr|V  qdS )zIterate over the subparts with a given MIME type.

    Use `maintype' as the main MIME type to match against; this defaults to
    "text".  Optional `subtype' is the MIME subtype to match against; if
    omitted, only the main type is matched.
    N)r   get_content_maintypeget_content_subtype)r   maintypesubtyper	   r
   r
   r   r   -   s   r   c                 C   s   |du rt j}d|d  }t||   d|d |r%td|   |d nt|d |  r>|  D ]}t|||d | q2dS dS )	zA handy debugging aidN     )endfilez [%s])r      )sysstdoutprintget_content_typeget_default_typer   r   
_structure)r   fplevelinclude_defaulttabr	   r
   r
   r   r!   ;   s   
r!   )F)r   N)Nr   F)	__doc____all__r   ior   r   r   r   r!   r
   r
   r
   r   <module>   s   

