<!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>

e fW                 @   sw   d  Z  d d d g Z d d l Z d d l m Z d d   Z d d	 d  Z d
 d d d  Z d d d d d  Z d S)z1Various types of useful iterators and generators.body_line_iteratortyped_subpart_iteratorwalk    N)StringIOc             c   s>   |  V|  j    r: x& |  j   D] } | j   Dd Hq Wn  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
   4/opt/alt/python34/lib64/python3.4/email/iterators.pyr      s    Fc             c   sN   xG |  j    D]9 } | j d |  } t | t  r t |  Dd Hq q Wd 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	   Zpayloadr
   r
   r   r   "   s    textc             c   sV   xO |  j    D]A } | j   | k r | d k sC | j   | k rN | VqN q q Wd 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   Zget_content_maintypeZget_content_subtype)r   Zmaintypesubtyper	   r
   r
   r   r   -   s    c             C   s   | d k r t  j } n  d | d } t | |  j   d d d | | ri t d |  j   d | n t d |  |  j   r x. |  j   D] } t | | | d |  q Wn  d S)	zA handy debugging aidN    end filez [%s]   )sysstdoutprintZget_content_typeZget_default_typer   r   
_structure)r   fplevelZinclude_defaultZtabr	   r
   r
   r   r   ;   s     r   )	__doc____all__r   ior   r   r   r   r   r
   r
   r
   r   <module>   s   	