mirror of
https://github.com/Guake/guake.git
synced 2025-10-26 11:27:13 +00:00
20 lines
225 B
Python
Executable File
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()
|