
RuntimeErrorTraceback (most recent call last)
<string> in <module>()

library/python/runtime/importer.pxi in __res.ResourceImporter.run_main()
    259             mod = importlib.import_module(mod_name)
    260             func = getattr(mod, func_name)
--> 261             return func()
        global func = undefined
    262 
    263         if entry_point not in self.memory:

library/python/runtime/test/traceback/crash.py in main()
     44 
     45     time.time = lambda: 1531996624.0  # Freeze time
     46     sys.executable = '<traceback test>'
     47 
---> 48     one()
        global one = <function one>

library/python/runtime/test/traceback/crash.py in one()
     14 
     15 def one():
---> 16     modfunc(two)  # aaa
        global modfunc = <function modfunc>
        global two = <function two>
     17 
     18 

library/python/runtime/test/traceback/mod/__init__.py in modfunc(f=<function two>)
      4 
      5 
      6 def modfunc(f):
      7     # lalala
----> 8     f()  # call back to caller
        f = <function two>

library/python/runtime/test/traceback/crash.py in two()
     18 
     19 def two():
---> 20     three(42)
        global three = <function three>
     21 
     22 

library/python/runtime/test/traceback/crash.py in three(x=42)
     22 
     23 def three(x):
---> 24     raise RuntimeError('Kaboom! I\'m dead: {}'.format(x))
        global RuntimeError.format = undefined
        x = 42
     25 
     26 

RuntimeError: Kaboom! I'm dead: 42
