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

library/python/runtime/importer.pxi in __res.ResourceImporter.run_main()
    264             raise Exception(entry_point + ' not found')
    265 
--> 266         self.load_module(entry_point, fix_name='__main__')
        global self.load_module = undefined
        global entry_point = undefined
        global fix_name = undefined
    267 
    268 

library/python/runtime/importer.pxi in __res.ResourceImporter.load_module()
    235 
    236         try:
--> 237             exec code in mod.__dict__
        global code = undefined
        global mod.__dict__ = undefined
    238             old_mod = sys.modules[mod_name]
    239         finally:

library/python/runtime/test/traceback/__main__.py in <module>()
      4 
      5 from library.python.runtime.test.traceback.crash import main
      6 
      7 if __name__ == "__main__":
----> 8     main()
        global main = <function main>

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
