8 lines
98 B
Python
8 lines
98 B
Python
|
|
||
|
def test_exception_syntax():
|
||
|
try:
|
||
|
0/0
|
||
|
except ZeroDivisionError, e:
|
||
|
pass
|
||
|
|