
    'g2T                    $   d dl mZ d dlmZ d dlZd dlZddlm	Z	 ddl
mZ ddlmZ ddlmZ dd	lmZ ej"                  r
d dlZd d
lmZ  ej,                  d      Z G d d      ZddZ ej4                  d      ZddZ G d dee      ZddlmZ y)    )annotationsN   )_missing)BadRequestKeyError   )ImmutableHeadersMixin)iter_multi_items)	MultiDict)WSGIEnvironmentTc                  ^   e Zd ZdZ	 d8	 	 	 d9dZej                  d:d       Zej                  d;d       Zej                  d<d       Zd=dZd:dZd>d	Z	dZ
ej                  d?d
       Zej                  d@d       Zej                  dAd       Zej                  dBd       Zej                  dCd       Z	 	 dD	 	 	 	 	 	 	 dEdZej                  dFd       Zej                  dGd       Z	 d8	 	 	 	 	 dHdZdIdZdJdKdZdJdLdZdMdZ	 d8	 	 	 	 	 dNdZdOdZdPdZdPdZej                  dQd       Zej                  d:d       Zej                  dRdSd       Zej                  d@d       Zej                  dAd       Zdef	 	 	 	 	 dTd ZdQd!ZdUd"ZdVd#ZdWd$ZdXd%ZdXd&ZdYd'ZdXd(ZdZd)Zd[d*Z d\d+Z!ej                  d]d,       Z"ej                  d^d-       Z"ej                  	 	 	 	 	 	 d_d.       Z"	 	 	 	 	 	 d`d/Z"	 d8	 	 	 	 	 dad0Z#	 	 	 	 dbd1Z$	 	 	 	 dcd2Z%ddd3Z&ded4Z'ded5Z(dfd6Z)dfd7Z*y)gHeadersa  An object that stores some headers. It has a dict-like interface,
    but is ordered, can store the same key multiple times, and iterating
    yields ``(key, value)`` pairs instead of only keys.

    This data structure is useful if you want a nicer way to handle WSGI
    headers which are stored as tuples in a list.

    From Werkzeug 0.3 onwards, the :exc:`KeyError` raised by this class is
    also a subclass of the :class:`~exceptions.BadRequest` HTTP exception
    and will render a page for a ``400 BAD REQUEST`` if caught in a
    catch-all for HTTP exceptions.

    Headers is mostly compatible with the Python :class:`wsgiref.headers.Headers`
    class, with the exception of `__getitem__`.  :mod:`wsgiref` will return
    `None` for ``headers['missing']``, whereas :class:`Headers` will raise
    a :class:`KeyError`.

    To create a new ``Headers`` object, pass it a list, dict, or
    other ``Headers`` object with default values. These values are
    validated the same way values added later are.

    :param defaults: The list of default values for the :class:`Headers`.

    .. versionchanged:: 3.1
        Implement ``|`` and ``|=`` operators.

    .. versionchanged:: 2.1.0
        Default values are validated the same as values added later.

    .. versionchanged:: 0.9
       This data structure now stores unicode values similar to how the
       multi dicts do it.  The main difference is that bytes can be set as
       well which will automatically be latin1 decoded.

    .. versionchanged:: 0.9
       The :meth:`linked` function was removed without replacement as it
       was an API that does not support the changes to the encoding model.
    Nc                :    g | _         || j                  |       y y N)_listextend)selfdefaultss     W/var/www/html/knws/venv/lib/python3.12/site-packages/werkzeug/datastructures/headers.py__init__zHeaders.__init__<   s"     -/
KK!      c                     y r    r   keys     r   __getitem__zHeaders.__getitem__K   s    ,/r   c                     y r   r   r   s     r   r   zHeaders.__getitem__M   s    8;r   c                     y r   r   r   s     r   r   zHeaders.__getitem__O       25r   c                    t        |t              r| j                  |      S t        |t              r| j                  |   S | j                  | j                  |         S r   )
isinstancestr_get_keyintr   	__class__r   s     r   r   zHeaders.__getitem__Q   sJ    c3==%%c3::c?"~~djjo..r   c                    |j                         }| j                  D ]  \  }}|j                         |k(  s|c S  t        |      r   )lowerr   r   )r   r   ikeykvs        r   r#   zHeaders._get_keyZ   sD    yy{JJ 	DAqwwyD 	 !%%r   c                    |j                   | j                   urt        S dd}t        t        ||j                              t        t        || j                              k(  S )Nc                6    | d   j                         g| dd  S )Nr   r   r'   )items    r   loweredzHeaders.__eq__.<locals>.loweredg   s     7==?-T!"X--r   )r.   tuple[str, ...]returnr0   )r%   NotImplementedsetmapr   )r   otherr/   s      r   __eq__zHeaders.__eq__c   sJ    ??$..0!!	. 3w,-S$**5M1NNNr   c                     y r   r   r   s     r   getzHeaders.getn   s    +.r   c                     y r   r   r   r   defaults      r   r8   zHeaders.getp   r   r   c                     y r   r   r:   s      r   r8   zHeaders.getr       47r   c                     y r   r   r   r   types      r   r8   zHeaders.gett   s    HKr   c                     y r   r   )r   r   r;   r@   s       r   r8   zHeaders.getv   s    MPr   c                    	 | j                  |      }||S 	  ||      S # t        $ r |cY S w xY w# t        $ r |cY S w xY w)a  Return the default value if the requested data doesn't exist.
        If `type` is provided and is a callable it should convert the value,
        return it or raise a :exc:`ValueError` if that is not possible.  In
        this case the function will return the default as if the value was not
        found:

        >>> d = Headers([('Content-Length', '42')])
        >>> d.get('Content-Length', type=int)
        42

        :param key: The key to be looked up.
        :param default: The default value to be returned if the key can't
                        be looked up.  If not further specified `None` is
                        returned.
        :param type: A callable that is used to cast the value in the
                     :class:`Headers`.  If a :exc:`ValueError` is raised
                     by this callable the default value is returned.

        .. versionchanged:: 3.0
            The ``as_bytes`` parameter was removed.

        .. versionchanged:: 0.9
            The ``as_bytes`` parameter was added.
        )r#   KeyError
ValueError)r   r   r;   r@   rvs        r   r8   zHeaders.getx   sZ    <	s#B <I	8O  	N	  	N	s     1 ..??c                     y r   r   r   s     r   getlistzHeaders.getlist   s    .1r   c                     y r   r   r?   s      r   rG   zHeaders.getlist   s    KNr   c                   |j                         }|:g }| D ]1  \  }}|j                         |k(  s	 |j                   ||             3 |S | D cg c]  \  }}|j                         |k(  s| c}}S # t        $ r Y jw xY wc c}}w )a  Return the list of items for a given key. If that key is not in the
        :class:`Headers`, the return value will be an empty list.  Just like
        :meth:`get`, :meth:`getlist` accepts a `type` parameter.  All items will
        be converted with the callable defined there.

        :param key: The key to be looked up.
        :param type: A callable that is used to cast the value in the
                     :class:`Headers`.  If a :exc:`ValueError` is raised
                     by this callable the value will be removed from the list.
        :return: a :class:`list` of all the values for the key.

        .. versionchanged:: 3.0
            The ``as_bytes`` parameter was removed.

        .. versionchanged:: 0.9
            The ``as_bytes`` parameter was added.
        )r'   appendrD   )r   r   r@   r(   resultr)   r*   s          r   rG   zHeaders.getlist   s    ( yy{F !1779$!d1g.! M"8daaggi4&788 & ! !
 9s   A6B.B6	BBc                $    | j                  |      S )zReturn a list of all the values for the named field.

        This method is compatible with the :mod:`wsgiref`
        :meth:`~wsgiref.headers.Headers.get_all` method.
        )rG   )r   names     r   get_allzHeaders.get_all   s     ||D!!r   c              #  P   K   | D ]  \  }}|r|j                         }||f  y wr   r-   )r   r'   r   values       r   itemszHeaders.items   s1      	JCiiku*	s   $&c              #  F   K   | j                  |      D ]	  \  }}|  y wr   rQ   )r   r'   r   _s       r   keyszHeaders.keys   s'     jj' 	FCI	s   !c              #  D   K   | j                         D ]	  \  }}|  y wr   rS   )r   rT   rP   s      r   valueszHeaders.values   s$     

 	HAuK	s    c                   |%t        |      D ]  \  }}| j                  ||        t        |      D ]  \  }}| j                  ||        y)a  Extend headers in this object with items from another object
        containing header items as well as keyword arguments.

        To replace existing keys instead of extending, use
        :meth:`update` instead.

        If provided, the first argument can be another :class:`Headers`
        object, a :class:`MultiDict`, :class:`dict`, or iterable of
        pairs.

        .. versionchanged:: 1.0
            Support :class:`MultiDict`. Allow passing ``kwargs``.
        N)r	   addr   argkwargsr   rP   s        r   r   zHeaders.extend   sW    2 ?.s3 %
Ue$% +62 	!JCHHS% 	!r   c                b    t        |t              r| j                  |       y | j                  |= y r   )r!   r"   _del_keyr   r   s     r   __delitem__zHeaders.__delitem__  s&    c3MM#JJsOr   c                    |j                         }g }| j                  D ],  \  }}|j                         |k7  s|j                  ||f       . || j                  d d  y r   )r'   r   rJ   )r   r   newr)   r*   s        r   r^   zHeaders._del_key  sV    iikJJ 	#DAqwwyC

Aq6"	# 

1r   c                $    | j                  |      S )zBRemove a key.

        :param key: The key to be removed.
        )r^   r   s     r   removezHeaders.remove  s    
 }}S!!r   c                     y r   r   r   s    r   popzHeaders.pop  s    &)r   c                     y r   r   r   s     r   rf   zHeaders.pop  s    $'r   c                     y r   r   r   s     r   rf   zHeaders.pop  s    =@r   c                     y r   r   r:   s      r   rf   zHeaders.pop  r   r   c                     y r   r   r:   s      r   rf   zHeaders.pop!  r=   r   c                   || j                   j                         S t        |t              r| j                   j                  |      S 	 | j	                  |      }| j                  |       |S # t
        $ r |t        ur|cY S  w xY w)aQ  Removes and returns a key or index.

        :param key: The key to be popped.  If this is an integer the item at
                    that position is removed, if it's a string the value for
                    that key is.  If the key is omitted or `None` the last
                    item is removed.
        :return: an item.
        )r   rf   r!   r$   r#   rC   r   rc   )r   r   r;   rE   s       r   rf   zHeaders.pop#  s~     ;::>>##c3::>>#&&	s#B 	C	  	h&		s   	A- -BBc                6    | j                   j                         S )z7Removes a key or index and returns a (key, value) item.)r   rf   re   s    r   popitemzHeaders.popitemA  s    zz~~r   c                F    	 | j                  |       y# t        $ r Y yw xY w)zCheck if a key is present.FT)r#   rC   r   s     r   __contains__zHeaders.__contains__E  s,    	MM#   		s    	  c                ,    t        | j                        S )zYield ``(key, value)`` tuples.)iterr   re   s    r   __iter__zHeaders.__iter__N  s    DJJr   c                ,    t        | j                        S r   )lenr   re   s    r   __len__zHeaders.__len__R  s    4::r   c               p    |rt        ||      }t        |      }| j                  j                  ||f       y)a  Add a new header tuple to the list.

        Keyword arguments can specify additional parameters for the header
        value, with underscores converted to dashes::

        >>> d = Headers()
        >>> d.add('Content-Type', 'text/plain')
        >>> d.add('Content-Disposition', 'attachment', filename='foo.png')

        The keyword argument dumping uses :func:`dump_options_header`
        behind the scenes.

        .. versionchanged:: 0.4.1
            keyword arguments were added for :mod:`wsgiref` compatibility.
        N)_options_header_vkw_str_header_valuer   rJ   )r   r   rP   r\   	value_strs        r   rY   zHeaders.addU  s4      'v6E%e,	

3	*+r   c               ,     | j                   ||fi | y)zAdd a new header tuple to the list.

        An alias for :meth:`add` for compatibility with the :mod:`wsgiref`
        :meth:`~wsgiref.headers.Headers.add_header` method.
        N)rY   )r   r   rP   r\   s       r   
add_headerzHeaders.add_headerk  s     	e&v&r   c                8    | j                   j                          y)zClears all headers.N)r   clearre   s    r   r}   zHeaders.clears  s    

r   c                   |rt        ||      }t        |      }| j                  s| j                  j                  ||f       yt	        | j                        }|j                         }t        |      D ].  \  }\  }}	|j                         |k(  s||f| j                  |<    n | j                  j                  ||f       y|D 
cg c]  }
|
d   j                         |k7  s|
 c}
| j                  |dz   d yc c}
w )a0  Remove all header tuples for `key` and add a new one.  The newly
        added key either appears at the end of the list if there was no
        entry or replaces the first one.

        Keyword arguments can specify additional parameters for the header
        value, with underscores converted to dashes.  See :meth:`add` for
        more information.

        .. versionchanged:: 0.6.1
           :meth:`set` now accepts the same arguments as :meth:`add`.

        :param key: The key to be inserted.
        :param value: The value to be inserted.
        Nr   r   )rw   rx   r   rJ   rq   r'   	enumerate)r   r   rP   r\   ry   	iter_listr(   idxold_keyrT   ts              r   r3   zHeaders.setw  s     'v6E%e,	zzJJsI./$	yy{!*9!5 	C'1}}$&#&	"2

3		 JJsI./ -6 Nq19M N

379 Ns   C;#C;c                    |r@t        |      }| j                  |t        |             |D ]  }| j                  ||        y| j	                  |       y)zRemove any existing values for a header and add new ones.

        :param key: The header key to set.
        :param values: An iterable of values to set for the key.

        .. versionadded:: 1.0
        N)rq   r3   nextrY   rc   )r   r   rW   values_iterrP   s        r   setlistzHeaders.setlist  sN     v,KHHS${+,$ %e$% KKr   c                    	 | j                  |      S # t        $ r Y nw xY w| j                  ||       | j                  |      S )a*  Return the first value for the key if it is in the headers,
        otherwise set the header to the value given by ``default`` and
        return that.

        :param key: The header key to get.
        :param default: The value to set for the key if it is not in the
            headers.
        )r#   rC   r3   r:   s      r   
setdefaultzHeaders.setdefault  sG    	==%% 		 	g}}S!!s    	c                P    || vr| j                  ||       | j                  |      S )a  Return the list of values for the key if it is in the
        headers, otherwise set the header to the list of values given
        by ``default`` and return that.

        Unlike :meth:`MultiDict.setlistdefault`, modifying the returned
        list will not affect the headers.

        :param key: The header key to get.
        :param default: An iterable of values to set for the key if it
            is not in the headers.

        .. versionadded:: 1.0
        )r   rG   r:   s      r   setlistdefaultzHeaders.setlistdefault  s(     d?LLg&||C  r   c                     y r   r   r   r   rP   s      r   __setitem__zHeaders.__setitem__  s    ;>r   c                     y r   r   r   s      r   r   zHeaders.__setitem__  s    GJr   c                     y r   r   r   s      r   r   zHeaders.__setitem__  s     r   c                   t        |t              r| j                  ||       yt        |t              r!|d   t	        |d         f| j
                  |<   y|D cg c]  \  }}|t	        |      f c}}| j
                  |<   yc c}}w )z=Like :meth:`set` but also supports index/slice based setting.r   r   N)r!   r"   r3   r$   rx   r   )r   r   rP   r)   r*   s        r   r   zHeaders.__setitem__  sp     c3HHS% S!#Ah(9%((CCDJJsOEJKTQ#4Q#78KDJJsOKs   Bc               p   |t        |t        t        f      r7|j                         D ]#  }| j	                  ||j                  |             % nt        |t        j                        rY|j                         D ]E  \  }}t        |t        t        t        f      r| j	                  ||       4| j                  ||       G n|D ]  \  }}| j                  ||        |j                         D ]E  \  }}t        |t        t        t        f      r| j	                  ||       4| j                  ||       G y)a  Replace headers in this object with items from another
        headers object and keyword arguments.

        To extend existing keys instead of replacing, use :meth:`extend`
        instead.

        If provided, the first argument can be another :class:`Headers`
        object, a :class:`MultiDict`, :class:`dict`, or iterable of
        pairs.

        .. versionadded:: 1.0
        N)r!   r   r
   rU   r   rG   cabcMappingrQ   listtupler3   rZ   s        r   updatezHeaders.update  s   4 ?#3488: 8CLLckk#&678C."%))+ -JC!%$s);<S%0e,	- #& )JCHHS%() !,,. 	%JC%$s!34S%(e$		%r   c                    t        |t        j                        st        S | j	                         }|j                  |       |S r   )r!   r   r   r2   copyr   )r   r5   rE   s      r   __or__zHeaders.__or__  s4     %.!!YY[
		%	r   c                    t        |t        j                  t        j                  f      st        S | j                  |       | S r   )r!   r   r   Iterabler2   r   r   r5   s     r   __ior__zHeaders.__ior__$  s2     %$,,!>?!!Er   c                    t        |       S )zRConvert the headers into a list suitable for WSGI.

        :return: list
        )r   re   s    r   to_wsgi_listzHeaders.to_wsgi_list1  s    
 Dzr   c                8    | j                  | j                        S r   )r%   r   re   s    r   r   zHeaders.copy8  s    ~~djj))r   c                "    | j                         S r   )r   re   s    r   __copy__zHeaders.__copy__;  s    yy{r   c                    g }| j                         D ]  \  }}|j                  | d|         |j                  d       dj                  |      S )z9Returns formatted headers suitable for HTTP transmission.z: z
)r   rJ   join)r   strsr   rP   s       r   __str__zHeaders.__str__>  sU    ++- 	+JCKK3%r%)*	+F{{4  r   c                J    t        |       j                   dt        |       dS )N())r@   __name__r   re   s    r   __repr__zHeaders.__repr__F  s$    t*%%&aT
~Q77r   r   )r   Headers | MultiDict[str, t.Any] | cabc.Mapping[str, t.Any | list[t.Any] | tuple[t.Any, ...] | set[t.Any]] | cabc.Iterable[tuple[str, t.Any]] | Noner1   Noner   r"   r1   r"   )r   r$   r1   tuple[str, str])r   slicer1   te.Self)r   str | int | slicer1   zstr | tuple[str, str] | te.Selfr5   objectr1   bool)r   r"   r1   z
str | None)r   r"   r;   r"   r1   r"   )r   r"   r;   r   r1   str | T)r   r"   r@   cabc.Callable[[str], T]r1   zT | None)r   r"   r;   r   r@   r   r1   r   )NN)r   r"   r;   str | T | Noner@   cabc.Callable[[str], T] | Noner1   r   )r   r"   r1   	list[str])r   r"   r@   r   r1   zlist[T])r   r"   r@   r   r1   zlist[str] | list[T])rM   r"   r1   r   )F)r'   r   r1   zt.Iterable[tuple[str, str]])r'   r   r1   t.Iterable[str])r1   r   )r[   r   r\   r"   r1   r   )r   r   r1   r   )r   r"   r1   r   )r1   r   ).)r   z
int | Noner1   r   )r   zstr | int | Noner;   r   r1   zstr | tuple[str, str] | T)r   r"   r1   r   )r1   zt.Iterator[tuple[str, str]]r1   r$   )r   r"   rP   t.Anyr\   r   r1   r   )r1   r   )r   r"   rW   cabc.Iterable[t.Any]r1   r   )r   r"   r;   r   r1   r"   )r   r"   r;   r   r1   r   )r   r"   rP   r   r1   r   )r   r$   rP   ztuple[str, t.Any]r1   r   )r   r   rP   z cabc.Iterable[tuple[str, t.Any]]r1   r   )r   r   rP   z<t.Any | tuple[str, t.Any] | cabc.Iterable[tuple[str, t.Any]]r1   r   )r[   zHeaders | MultiDict[str, t.Any] | cabc.Mapping[str, t.Any | list[t.Any] | tuple[t.Any, ...] | cabc.Set[t.Any]] | cabc.Iterable[tuple[str, t.Any]] | Noner\   z9t.Any | list[t.Any] | tuple[t.Any, ...] | cabc.Set[t.Any]r1   r   )r5   zLcabc.Mapping[str, t.Any | list[t.Any] | tuple[t.Any, ...] | cabc.Set[t.Any]]r1   r   )r5   zocabc.Mapping[str, t.Any | list[t.Any] | tuple[t.Any, ...] | cabc.Set[t.Any]] | cabc.Iterable[tuple[str, t.Any]]r1   r   )r1   zlist[tuple[str, str]])r1   r   )r1   r"   )+r   
__module____qualname____doc__r   r   overloadr   r#   r6   __hash__r8   rG   rN   rQ   rU   rW   r   r_   r^   rc   rf   r   rm   ro   rr   ru   rY   r{   r}   r3   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r      sC   %^ "" 
" ZZ/ /ZZ; ;ZZ5 5/&O HZZ. .ZZ5 5ZZ7 7ZZK KZZP P #'/3	))  ) -	)
 
)V ZZ1 1ZZN N?C"9"9<"9	"9H" !! ! 
!@" ZZ) )ZZ' 'ZZ@ @ZZ5 5ZZ7 7 !%#  
#	<  ,,'&OP"""!& ZZ> >ZZJ JZZ!A	 LL LL 
	L. ,%,% L,% 
,%\

 
/ 
*!8r   r   c                    t        j                  | |j                         D ci c]  \  }}|j                  dd      | c}}      S c c}}w )NrT   -)httpdump_options_headerrQ   replace)rP   kwr)   r*   s       r   rw   rw   J  sB    ##288:>41a		#s#Q&> >s   A	z[\r\n]c                |    t        | t              st        |       } t        j                  |       t	        d      | S )Nz2Header values must not contain newline characters.)r!   r"   _newline_researchrD   )rP   s    r   rx   rx   S  s7    eS!E
% ,MNNLr   c                  `     e Zd ZdZd fdZddZdZddZddZddZ	ddZ
dd	Zdd
Z xZS )EnvironHeadersa  Read only version of the headers from a WSGI environment.  This
    provides the same interface as `Headers` and is constructed from
    a WSGI environment.
    From Werkzeug 0.3 onwards, the `KeyError` raised by this class is also a
    subclass of the :exc:`~exceptions.BadRequest` HTTP exception and will
    render a page for a ``400 BAD REQUEST`` if caught in a catch-all for
    HTTP exceptions.
    c                0    t         |           || _        y r   )superr   environ)r   r   r%   s     r   r   zEnvironHeaders.__init__g  s    r   c                ^    t        |t              st        S | j                  |j                  u S r   )r!   r   r2   r   r   s     r   r6   zEnvironHeaders.__eq__k  s%    %0!!||u}},,r   Nc                $    | j                  |      S r   )r#   r   s     r   r   zEnvironHeaders.__getitem__s  s    }}S!!r   c                    t        |t              st        |      |j                         j	                  dd      }|dv r| j
                  |   S | j
                  d|    S )Nr   rT      CONTENT_TYPECONTENT_LENGTHHTTP_)r!   r"   r   upperr   r   r   s     r   r#   zEnvironHeaders._get_keyv  s\    #s#$S))iik!!#s+44<<$$||eC5M**r   c                &    t        d | D              S )Nc              3      K   | ]  }d   yw)r   Nr   ).0rT   s     r   	<genexpr>z)EnvironHeaders.__len__.<locals>.<genexpr>  s     #1#s   )sumre   s    r   ru   zEnvironHeaders.__len__  s    #d###r   c              #  "  K   | j                   j                         D ]n  \  }}|j                  d      r,|dvr(|dd  j                  dd      j	                         |f C|dv sH|sK|j                  dd      j	                         |f p y w)Nr   >   HTTP_CONTENT_TYPEHTTP_CONTENT_LENGTH   rT   r   r   )r   rQ   
startswithr   titler   s      r   rr   zEnvironHeaders.__iter__  s     ,,,,. 	;JC~~g&3 7 , !"gooc3/557>>::ukk#s+113U::	;s   A"B%B('Bc                F    t        dt        |       j                  d      Nzcannot create z copies	TypeErrorr@   r   re   s    r   r   zEnvironHeaders.copy  !    .d)<)<(?wGHHr   c                F    t        dt        |       j                  d      r   r   r   s     r   r   zEnvironHeaders.__or__  r   r   )r   r   r1   r   r   r   r   )r1   zcabc.Iterator[tuple[str, str]])r1   
t.NoReturn)r5   r   r1   r   )r   r   r   r   r   r6   r   r   r#   ru   rr   r   r   __classcell__)r%   s   @r   r   r   ]  s9    - H"	+$;IIr   r   )r   )rP   r"   r   zdict[str, t.Any]r1   r"   )rP   r   r1   r"   ) 
__future__r   collections.abcabcr   retypingr   	_internalr   
exceptionsr   mixinsr   
structuresr	   r
   TYPE_CHECKINGtyping_extensionste_typeshed.wsgir   TypeVarr   r   rw   compiler   rx   r    r   r   r   r   <module>r      s|    "  	    + ) ( !??".AIIcNs8 s8l bjj#5I*G 5Ir r   