Files
python-uncompyle6/test/simple_source/bug27+/05_deadcode.py

7 lines
152 B
Python

# Test to see we can a program that has dead code in it.
# This was issue #150
def func(a):
if a:
return True
something_never_run()