<!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               @   s{   d  Z  d d l m Z d d l m Z d d l m Z d d l m Z m Z m	 Z	 m
 Z
 m Z Gd d „  d e j ƒ Z d S(	   uÖ   Fixer for generator.throw(E, V, T).

g.throw(E)       -> g.throw(E)
g.throw(E, V)    -> g.throw(E(V))
g.throw(E, V, T) -> g.throw(E(V).with_traceback(T))

g.throw("foo"[, V[, T]]) will warn about string exceptions.i   (   u   pytree(   u   token(   u
   fixer_base(   u   Nameu   Callu   ArgListu   Attru   is_tuplec             B   s,   |  Ee  Z d  Z d Z d Z d d „  Z d S(   u   FixThrowuÉ   
    power< any trailer< '.' 'throw' >
           trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
    >
    |
    power< any trailer< '.' 'throw' > trailer< '(' exc=any ')' > >
    c             C   sG  |  j  } | d j ƒ  } | j t j k r? |  j | d ƒ d  S| j d ƒ } | d  k r^ d  S| j ƒ  } t | ƒ r™ d d „  | j	 d d … Dƒ } n d | _
 | g } | d } d	 | k r-| d	 j ƒ  } d | _
 t | | ƒ }	 t |	 t d
 ƒ ƒ t | g ƒ g }
 | j t j | j |
 ƒ ƒ n | j t | | ƒ ƒ d  S(   Nu   excu+   Python 3 does not support string exceptionsu   valc             S   s   g  |  ] } | j  ƒ  ‘ q S(    (   u   clone(   u   .0u   c(    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_throw.pyu
   <listcomp>)   s   	 u&   FixThrow.transform.<locals>.<listcomp>i   u    u   argsu   tbu   with_tracebackiÿÿÿÿ(   u   symsu   cloneu   typeu   tokenu   STRINGu   cannot_convertu   getu   Noneu   is_tupleu   childrenu   prefixu   Callu   Attru   Nameu   ArgListu   replaceu   pytreeu   Nodeu   power(   u   selfu   nodeu   resultsu   symsu   excu   valu   argsu
   throw_argsu   tbu   eu   with_tb(    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_throw.pyu	   transform   s*    	#		
	%u   FixThrow.transformNT(   u   __name__u
   __module__u   __qualname__u   Trueu   BM_compatibleu   PATTERNu	   transform(   u
   __locals__(    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_throw.pyu   FixThrow   s   u   FixThrowN(   u   __doc__u    u   pytreeu   pgen2u   tokenu
   fixer_baseu
   fixer_utilu   Nameu   Callu   ArgListu   Attru   is_tupleu   BaseFixu   FixThrow(    (    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_throw.pyu   <module>   s
   (