Current File : //usr/local/apps/python3/lib/python3.11/test/__pycache__/test_unparse.cpython-311.opt-2.pyc |
�
�Ke�a � � � d dl Z d dlZd dlZd dlZd dlZd dlZd� ZdZdZ dZ
dZdZdZ
d Zd
ZdZdZd
ZdZdZdZ G d� de j � � Z G d� de� � Z G d� de� � Z G d� de� � Zedk r e j � � dS dS )� Nc � � t j | � � 5 }|� � � cd d d � � S # 1 swxY w Y d S �N)�tokenize�open�read)�filename�streams �;/usr/local/apps/python3/lib/python3.11/test/test_unparse.py�read_pyfiler s� � �7� ��x� � � �F��{�{�}�}�� � � � � � � � � � � ���� � � � � � s �7�;�;zQdef f():
for x in range(10):
break
else:
y = 2
z = 3
zIdef g():
while True:
break
else:
y = 2
z = 3
zQfrom . import fred
from .. import barney
from .australia import shrimp as prawns
zzdef f():
x = 1
def g():
nonlocal x
x = 2
y = 7
def h():
nonlocal x, y
zOtry:
1 / 0
except ZeroDivisionError as e:
raise ArithmeticError from e
z@f1(arg)
@f2
class Foo: pass
z=if cond1:
suite1
elif cond2:
suite2
else:
suite3
z,if cond1:
suite1
elif cond2:
suite2
zctry:
suite1
except ex1:
suite2
except ex2:
suite3
else:
suite4
finally:
suite5
zetry:
suite1
except* ex1:
suite2
except* ex2:
suite3
else:
suite4
finally:
suite5
zwith f():
suite1
zwith f() as x:
suite1
z$with f() as x, g() as y:
suite1
)� zclass foo:
zdef foo():
zasync def foo():
c �<