标签: ironpython
它应该是直截了当的,对吧?做一些像
import traceback def f(): g() def g(): print 'stack:' traceback.print_stack() f()
然而,这只给了我
stack:
我有什么先决条件吗?我在Windows 7下的.NET 4.0.30319.34209(64位)上使用IronPython 2.7.5.0。