当前位置: 首页>>代码示例>>C#>>正文


C# PythonModule.Get__dict__方法代码示例

本文整理汇总了C#中IronPython.Runtime.PythonModule.Get__dict__方法的典型用法代码示例。如果您正苦于以下问题:C# PythonModule.Get__dict__方法的具体用法?C# PythonModule.Get__dict__怎么用?C# PythonModule.Get__dict__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IronPython.Runtime.PythonModule的用法示例。


在下文中一共展示了PythonModule.Get__dict__方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: PyModule_New

 PyModule_New(string name)
 {
     PythonModule module = new PythonModule();
     module.Get__dict__()["__name__"] = name;
     module.Get__dict__()["__doc__"] = "";
     return this.Store(module);
 }
开发者ID:netcharm,项目名称:ironclad,代码行数:7,代码来源:PythonMapper_module.cs

示例2: Py_InitModule4

        Py_InitModule4(string name, IntPtr methodsPtr, string doc, IntPtr selfPtr, int apiver)
        {
            name = this.FixImportName(name);
            
            PythonDictionary methodTable = new PythonDictionary();
            PythonModule module = new PythonModule();
            this.AddModule(name, module);
            this.CreateModulesContaining(name);

            PythonDictionary __dict__ = module.Get__dict__();
            __dict__["__doc__"] = doc;
            __dict__["__name__"] = name;
            string __file__ = this.importFiles.Peek();
            __dict__["__file__"] = __file__;
            List __path__ = new List();
            if (__file__ != null)
            {
                __path__.append(Path.GetDirectoryName(__file__));
            }
            __dict__["__path__"] = __path__;
            __dict__["_dispatcher"] = new Dispatcher(this, methodTable, selfPtr);

            StringBuilder moduleCode = new StringBuilder();
            moduleCode.Append(CodeSnippets.USEFUL_IMPORTS);
            CallableBuilder.GenerateFunctions(moduleCode, methodsPtr, methodTable);
            this.ExecInModule(moduleCode.ToString(), module);
            
            return this.Store(module);
        }
开发者ID:netcharm,项目名称:ironclad,代码行数:29,代码来源:PythonMapper_module.cs

示例3: BuiltinModule

 public BuiltinModule(PythonModule module, ProjectState projectState, bool showClr)
     : base(new LazyDotNetDict(new object[] { module }, projectState, showClr))
 {
     object name;
     if (!module.Get__dict__().TryGetValue("__name__", out name) || !(name is string)) {
         _name = String.Empty;
     } else {
         _name = name as string;
     }
 }
开发者ID:TerabyteX,项目名称:main,代码行数:10,代码来源:BuiltinModule.cs

示例4: EnumerateMembers

        /// <summary>
        /// List all of the members in a PythonModule
        /// </summary>
        /// <param name="module">A reference to the module</param>
        /// <param name="name">The name of the module</param>
        /// <returns>A list of completion data for the module</returns>
        public List<IronPythonCompletionData> EnumerateMembers(PythonModule module, string name)
        {
            var items = new List<IronPythonCompletionData>();
            var d = module.Get__dict__();

            foreach (var member in d)
            {
                if ( member.Value is BuiltinFunction )
                {
                    items.Add(new IronPythonCompletionData( (string) member.Key, name, false, IronPythonCompletionData.CompletionType.METHOD, this));
                }
                else
                {
                    items.Add(new IronPythonCompletionData((string)member.Key, name, false, IronPythonCompletionData.CompletionType.FIELD, this));
                }
            }
            return items;
        }
开发者ID:rafatahmed,项目名称:Dynamo,代码行数:24,代码来源:IronPythonCompletionProvider.cs

示例5: CreateModule

 CreateModule(string name)
 {
     PythonModule module = this.GetModule(name);
     if (module == null)
     {
         module = new PythonModule();
         module.Get__dict__()["__name__"] = name;
         this.AddModule(name, module);
     }
     return module;
 }
开发者ID:netcharm,项目名称:ironclad,代码行数:11,代码来源:PythonMapper_module.cs

示例6: ExecInModule

 ExecInModule(string code, PythonModule module)
 {
     SourceUnit script = this.python.CreateSnippet(code, SourceCodeKind.Statements);
     script.Execute(new Scope(module.Get__dict__()));
 }
开发者ID:netcharm,项目名称:ironclad,代码行数:5,代码来源:PythonMapper_module.cs


注:本文中的IronPython.Runtime.PythonModule.Get__dict__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。