如何将选项传递给新的IronPython引擎?

时间:2010-02-20 23:09:38

标签: ironpython

我在IronPython中托管IronPython。我没有找到使用等效命令行参数初始化它的方法:-X:FullFrames

我的代码有点像:

import clr
clr.AddReference('IronPython')
clr.AddReference('Microsoft.Scripting')
from IronPython.Hosting import PythonCommandLine, PythonConsoleOptions, Python
clr.AddReference('Microsoft.Dynamic')
clr.AddReference('System')
import System
from Microsoft.Scripting.Hosting.Shell import IConsole

engine = Python.CreateEngine()
runtime = engine.Runtime
for assembly in clr.References:
    runtime.LoadAssembly(assembly)

cmdLine = PythonCommandLine()
runtime.Globals.SetVariable('cur_cmdLine',cmdLine)

cmdLine.Run(engine, my_console(), PythonConsoleOptions())

“我的”代码基于thisthat

1 个答案:

答案 0 :(得分:6)

你可以这样做:

engine = Python.CreateEngine({'FullFrames': True})

将启用完整帧。所有其他选项与命令行选项匹配。