mirror of https://github.com/arendst/Tasmota.git
13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
|
import debug
|
||
|
|
||
|
def test_func()
|
||
|
try
|
||
|
compile('def +() end')()
|
||
|
except .. as e, v
|
||
|
print('catch execption:', str(e) + ' >>>\n ' + str(v))
|
||
|
debug.traceback()
|
||
|
end
|
||
|
end
|
||
|
|
||
|
test_func()
|