a
´in ã @ sZ d Z ddlmZ ddlmZ ddlmZ ddlmZmZm Z m
Z
mZ G dd„ dejƒZ
dS ) a[ 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.
é )Úpytree)Útoken)Ú
fixer_base)ÚNameÚCallÚAttrÚArgListÚis_tuplec @ s e Zd ZdZdZdd„ ZdS )ÚFixRaiseTzB
raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
c C sh | j }|d ¡ }|jtjkr2d}| ||¡ d S t|ƒr^t|ƒrX|jd jd ¡ }q:d|_d|vrˆt
|jtdƒ|g¡}|j|_|S |d ¡ }t|ƒr¶dd „ |jdd
… D ƒ}nd|_|g}d|v �rB|d ¡ } d| _|}
|jtj
ksú|jd
k�rt||ƒ}
t|
tdƒƒt| gƒg }t
|jtdƒg| ¡}|j|_|S t j
|jtdƒt||ƒg|jd�S d S )NÚexcz+Python 3 does not support string exceptionsé é ú ÚvalÚraisec S s g | ]}| ¡ ‘qS © )Úclone)Ú.0Úcr r ú//usr/lib64/python3.9/lib2to3/fixes/fix_raise.pyÚ