答案 0 :(得分:0)
您正在使用的库似乎使用内部API来获取当前堆栈/活动对象的信息。
为了提供所需的信息和接口,您必须使用-X:FullFrames
参数运行IronPython。
您是否计划从C#托管IronPython this answer解释了必要的步骤。
而不是之前的情况/错误
C:\Program Files (x86)\IronPython 2.7>ipy
IronPython 2.7.5 (2.7.5.0) on .NET 4.0.30319.42000 (32-bit)
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._getframe(0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute '_getframe'
您将获得预期的行为
C:\Program Files (x86)\IronPython 2.7>ipy -X:FullFrames
IronPython 2.7.5 (2.7.5.0) on .NET 4.0.30319.42000 (32-bit)
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._getframe(0)
<frame object at 0x000000000000002B>