4216bc7d13
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
7 lines
253 B
Python
7 lines
253 B
Python
import micropython as micropython
|
|
|
|
# check that level 3 doesn't store line numbers
|
|
# the expected output is that any line is printed as "line 1"
|
|
micropython.opt_level(3)
|
|
exec("try:\n xyz\nexcept NameError as er:\n import sys\n sys.print_exception(er)")
|