RuntimeErrorTraceback (most recent call last) in () 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 () 4 5 from library.python.runtime.test.traceback.crash import main 6 7 if __name__ == "__main__": ----> 8 main() global main = library/python/runtime/test/traceback/crash.py in main() 44 45 time.time = lambda: 1531996624.0 # Freeze time 46 sys.executable = '' 47 ---> 48 one() global one = library/python/runtime/test/traceback/crash.py in one() 14 15 def one(): ---> 16 modfunc(two) # aaa global modfunc = global two = 17 18 library/python/runtime/test/traceback/mod/__init__.py in modfunc(f=) 4 5 6 def modfunc(f): 7 # lalala ----> 8 f() # call back to caller f = library/python/runtime/test/traceback/crash.py in two() 18 19 def two(): ---> 20 three(42) global 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