[lang-ref] ( return_can_be_omitted ) ( python )
def test_return_can_be_omitted():
# No
def func01(a, b):
a + b
r = func01(3, 5)
assert r is None
def test_return_can_be_omitted():
# No
def func01(a, b):
a + b
r = func01(3, 5)
assert r is None