IronPython sys._getframe not found
问题 I'm currently building a program in C# which will call functions in provided python script files. Some of these script files calls _getframe() in sys , which results in the error: System.MissingMemberException: 'module' object has no attribute '_getframe' (Since IronPython doesn't have _getframe activated by default.) I have done quite a lot of googling and found out that you can activate it in ipy.exe by providing -X:Frames as a command line option, however this doesn't solve my problem