Esempio n. 1
0
 internal static void BootstrapConsole(IronPythonConsoleControl console, Action<PythonConsole> initCallback = null)
 {
     // initialize when ready
     console.WithHost(host =>
     {
         ConfigureVariables(host.Console);
         CallInitializeScript(host.Console);
         if (initCallback != null)
             initCallback(host.Console);
     });
 }