Exemplo n.º 1
0
 internal AstPythonInterpreterFactory(Dictionary <string, object> properties) :
     this(
         InterpreterConfiguration.FromDictionary(properties),
         InterpreterFactoryCreationOptions.FromDictionary(properties),
         properties.ContainsKey("UseDefaultDatabase")
         )
 {
 }
Exemplo n.º 2
0
        private MockPythonInterpreterFactory(Dictionary <string, object> properties)
        {
            _config = InterpreterConfiguration.FromDictionary(properties);

            _isCurrent      = true;
            IsCurrentReason = null;

            _useUpdater = false;
        }
Exemplo n.º 3
0
 private MockPythonInterpreterFactory(Dictionary <string, object> properties)
 {
     Configuration = InterpreterConfiguration.FromDictionary(properties);
 }
 private IronPythonInterpreterFactory(Dictionary <string, object> properties)
     : base(InterpreterConfiguration.FromDictionary(properties), InterpreterFactoryCreationOptions.FromDictionary(properties))
 {
 }
Exemplo n.º 5
0
 internal AstPythonInterpreterFactory(Dictionary <string, object> properties) :
     this(InterpreterConfiguration.FromDictionary(properties), InterpreterFactoryCreationOptions.FromDictionary(properties))
 {
 }