7 lines
128 B
Python
7 lines
128 B
Python
# -*- coding: utf-8 -*-
|
|
def test_exception_syntax():
|
|
try:
|
|
0 / 0
|
|
except ZeroDivisionError as e:
|
|
assert e
|