<!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>
ž
¬ÿfn  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 'raise E, V, T'

raise         -> raise
raise E       -> raise E
raise E, V    -> raise E(V)
raise E, V, T -> raise E(V).with_traceback(T)
raise E, None, T -> raise E.with_traceback(T)

raise (((E, E'), E''), E'''), V -> raise E(V)
raise "foo", V, T               -> warns about string exceptions


CAVEATS:
1) "raise E, V" will be incorrectly translated if V is an exception
   instance. The correct Python 3 idiom is

        raise E from V

   but since we can't detect instance-hood by syntax alone and since
   any client code would have to be changed as well, we don't automate
   this.
i   (   u   pytree(   u   token(   u
   fixer_base(   u   Nameu   Callu   Attru   ArgListu   is_tuplec             B   s,   |  Ee  Z d  Z d Z d Z d d „  Z d S(   u   FixRaiseuB   
    raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
    c             C   s  |  j  } | d j ƒ  } | j t j k rE d } |  j | | ƒ d  St | ƒ rŠ x* t | ƒ r} | j d j d j ƒ  } qT Wd | _ n  d | k rÇ t	 j
 | j t d ƒ | g ƒ } | j | _ | S| d j ƒ  } t | ƒ rd d	 „  | j d d … Dƒ } n d
 | _ | g } d | k rÍ| d j ƒ  }	 d
 |	 _ | }
 | j t j k sd| j d k rvt | | ƒ }
 n  t |
 t d ƒ ƒ t |	 g ƒ g } t	 j
 | j t d ƒ g | ƒ } | j | _ | St	 j
 | j t d ƒ t | | ƒ g d | j ƒSd  S(   Nu   excu+   Python 3 does not support string exceptionsi   i    u    u   valu   raisec             S   s   g  |  ] } | j  ƒ  ‘ q S(    (   u   clone(   u   .0u   c(    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_raise.pyu
   <listcomp>D   s   	 u&   FixRaise.transform.<locals>.<listcomp>u    u   tbu   Noneu   with_tracebacku   prefixiÿÿÿÿ(   u   symsu   cloneu   typeu   tokenu   STRINGu   cannot_convertu   is_tupleu   childrenu   prefixu   pytreeu   Nodeu
   raise_stmtu   Nameu   NAMEu   valueu   Callu   Attru   ArgListu   simple_stmt(   u   selfu   nodeu   resultsu   symsu   excu   msgu   newu   valu   argsu   tbu   eu   with_tb(    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_raise.pyu	   transform&   s@    	!#			!%"u   FixRaise.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_raise.pyu   FixRaise   s   u   FixRaiseN(   u   __doc__u    u   pytreeu   pgen2u   tokenu
   fixer_baseu
   fixer_utilu   Nameu   Callu   Attru   ArgListu   is_tupleu   BaseFixu   FixRaise(    (    (    u<   /opt/alt/python33/lib64/python3.3/lib2to3/fixes/fix_raise.pyu   <module>   s
   (