<html><head><style type="text/css" media="screen">Body{font-family: Verdana;font-size:.75em;}h4{font-size:.9em;}a{color: #3a62a6;}.digest .toc {margin-bottom: 15px; padding-bottom:8px; border-bottom: 1px solid #ccc;}.digest .tocItem {margin-bottom: 15px;}.tocItem a{color:#000;text-decoration: none;}.tocItem a:hover{color: #3a62a6;text-decoration: underline;}.topic{padding-bottom: 8px;margin-bottom: 20px; border-bottom: 1px solid #ccc;}.topicHeader{margin-bottom:10px;}.topicTitle{font-weight: bold;}.replies p{margin:0;padding:0;}.replies hr{width: 15%;text-align: left;margin: 0 auto 5px 0;border: none 0;border-top: 1px solid #ccc;height: 1px;}.reply{margin-bottom: 6px;padding-bottom: 4px;}.anchorMarker{color: #3a62a6;}.footer{color: gray;}</style></head><body><div class="digest"><p>Hi ironpython,</p><p>Here's your Daily Digest of new issues for project "<a href="http://ironpython.codeplex.com/">IronPython</a>".</p><p>In today's digest:</p><h4>ISSUES</h4><div class="toc"><div class="tocItem"><a href="#toc_issue_1">1. <span class="tocTitle">[New issue] Deriving from C# class and interfaces</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] IP 2.7.1 xml.etree.Elementree#iterparse is not working</span> <span class="anchorMarker">↓</span></a></div></div><h4>ISSUES</h4><div class="topic"><a name="toc_issue_1"></a><div class="topicHeader"><span class="topicTitle">1. [New issue] Deriving from C# class and interfaces</span> <a href="http://ironpython.codeplex.com/workitem/32166">view online</a></div><p>User kvncode has proposed the issue:</p><p>"With IronPython 2.6.2 I can't seem to derive from a C# base class and implement an interface. It seems in this case the property 'Name' does not get attached to the derived type as 'get_Name', which is how the interface will access the property in C#. <br /><br />**** C#<br />namespace superclasstest2<br />{<br />	public interface IAnimal<br />	{<br />		string Name{ get; }<br />	}<br /><br /><br />	public class Animal<br />	{<br />		public virtual string Name<br />		{<br />			get { return "animal"; }<br />		}<br />	}<br /><br />	public static class proc<br />	{<br />		public static string who(IAnimal animal)<br />		{<br />			return animal.Name;<br />		}<br />	}<br />}<br /><br />**** IronPython<br />import clr<br />clr.AddReferenceToFile("superclasstest2.dll")<br /><br />import superclasstest2 as s<br /><br />class dog(s.Animal, s.IAnimal):<br /> def __new__(cls):<br /> return s.Animal.__new__(cls)<br /> <br /> def __init__(self):<br /> print "i am dog"<br /> <br /> <br />d = dog()<br />print dir(d)<br />print "call",s.proc.who(d)<br /><br /><br />**** Output<br />i am dog<br />['Equals', 'GetHashCode', 'GetType', 'MemberwiseClone', 'Name', 'ReferenceEquals', 'ToString', '__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__i<br />nit__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__']<br />callTraceback (most recent call last):<br /> File "<stdin>", line 1, in <module><br /> File "C:\Workspace\KRS\myIronPython\supertest.py", line 16, in <module><br />AttributeError: 'dog' object has no attribute 'get_Name'"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] IP 2.7.1 xml.etree.Elementree#iterparse is not working</span> <a href="http://ironpython.codeplex.com/workitem/31923">view online</a></div><p>User pekkaklarck has commented on the issue:</p><p>"It is somewhat weird that this is broken because nowadays IronPython ought to contain a working elementtree implementation [1] that is also available at [2]. What is really weird that this module works fine if I install it separately.<br /><br />[1] http://ironpython.codeplex.com/workitem/31579<br />[2] http://effbot.org/zone/element-index.htm"</p></div><div class="footer"><p>You are receiving this email because you subscribed to notifications on CodePlex.</p><p>To report a bug, request a feature, or add a comment, visit <a href="http://ironpython.codeplex.com/workitem/list/basic">IronPython Issue Tracker</a>. You can <a href="https://ironpython.codeplex.com/subscriptions/workitem/project/edit">unsubscribe or change your issue notification settings</a> on CodePlex.com.</p></div></div></body></html>