Example #1
0
        public IronPythonAnalysisTest() : base(CreateInterperter())
        {
            _objectMembersClr = PyObjectType.GetMemberNames(IronPythonModuleContext.ShowClrInstance).ToArray();
            _strMembersClr    = StringType.GetMemberNames(IronPythonModuleContext.ShowClrInstance).ToArray();

            Assert.IsTrue(_objectMembers.Length < _objectMembersClr.Length);
            Assert.IsTrue(_strMembers.Length < _strMembersClr.Length);
        }
Example #2
0
 protected PyDataType(PyObjectType type)
 {
     this.Type = type;
 }
Example #3
0
 protected PyRep(PyObjectType type)
 {
     Type = type;
 }