guake-guake/scripts/test-exception.py
Gaetan Semet aaae274fb3 Add some image in the documentation
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2018-04-14 23:19:40 +02:00

20 lines
225 B
Python
Executable File

#!/usr/bin/env python3
print("Quick Open test: exception traceback")
def func4():
raise ValueError("This is an exception")
def func2():
func3()
def func1():
func2()
if __name__ == "__main__":
func1()